本文整理汇总了C#中SerializationTestContext.AssertWriteSingleProperty方法的典型用法代码示例。如果您正苦于以下问题:C# SerializationTestContext.AssertWriteSingleProperty方法的具体用法?C# SerializationTestContext.AssertWriteSingleProperty怎么用?C# SerializationTestContext.AssertWriteSingleProperty使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SerializationTestContext
的用法示例。
在下文中一共展示了SerializationTestContext.AssertWriteSingleProperty方法的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: WriteDecimalTest
public void WriteDecimalTest()
{
var context = new SerializationTestContext();
context.AssertWriteSingleProperty(new DecimalGraph { Value = 42.74343M });
}
示例2: WriteUInt64Test
public void WriteUInt64Test()
{
var context = new SerializationTestContext();
context.AssertWriteSingleProperty(new UInt64Graph { Value = 42 });
}
示例3: WriteDateTimeTest
public void WriteDateTimeTest()
{
var context = new SerializationTestContext();
context.AssertWriteSingleProperty(new DateTimeGraph { Value = new DateTime(2001, 01, 07, 15, 30, 24) });
}
示例4: WriteStringTest
public void WriteStringTest()
{
var context = new SerializationTestContext();
context.AssertWriteSingleProperty(new StringGraph { Value = "Hello World" });
}
示例5: WriteTimeSpanTest
public void WriteTimeSpanTest()
{
var context = new SerializationTestContext();
context.AssertWriteSingleProperty(new TimeSpanGraph { Value = new TimeSpan(12, 30, 00) });
}
示例6: WriteGuidTest
public void WriteGuidTest()
{
var context = new SerializationTestContext();
context.AssertWriteSingleProperty(new GuidGraph { Value = Guid.Empty });
}
示例7: WriteSingleTest
public void WriteSingleTest()
{
var context = new SerializationTestContext();
context.AssertWriteSingleProperty(new SingleGraph { Value = 42.3f });
}
示例8: WriteEnumTest
public void WriteEnumTest()
{
var context = new SerializationTestContext();
context.AssertWriteSingleProperty(new EnumGraph { Value = ApplicationType.Api });
}
示例9: WriteBooleanTest
public void WriteBooleanTest()
{
var context = new SerializationTestContext();
context.AssertWriteSingleProperty(new BooleanGraph { Value = true });
}
示例10: WriteBlobTest
public void WriteBlobTest()
{
var context = new SerializationTestContext();
context.AssertWriteSingleProperty(new BlobGraph { Value = new byte[]{1,2,3} });
}
示例11: WriteNullableUInt32Test
public void WriteNullableUInt32Test()
{
var context = new SerializationTestContext();
context.AssertWriteSingleProperty(new NullableUInt32Graph { Value = 42 });
}
示例12: WriteNullableTimeSpanTest
public void WriteNullableTimeSpanTest()
{
var context = new SerializationTestContext();
context.AssertWriteSingleProperty(new NullableTimeSpanGraph { Value = null });
}