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