TypeTests\DataTypeTests.cs (14)
27: Test<byte>("Byte", 8, 9);
33: Test<short>("Short", 8, 9);
39: Test<int>("Int", 8, 9);
45: Test<long>("Long", 8L, 9L);
51: Test<float>("Float", 8.5f, 9.5f);
57: Test<double>("Double", 8.5d, 9.5d);
63: Test<decimal>("Decimal", 8.5m, 9.5m);
69: Test<string>("String", "foo", "bar");
75: Test<bool>("Bool", true, false);
81: Test<Guid>(
90: Test<DateTime>(
100: Test<DateTimeOffset>(
140: Test<string[]>(
149: Test<int?>("NullableInt", 8, 9);