|
1 | | -namespace NewtonsoftJsonTest |
| 1 | +namespace NewtonsoftJsonTest; |
| 2 | + |
| 3 | +internal sealed class Program |
2 | 4 | { |
3 | | - internal sealed class Program |
| 5 | + |
| 6 | + #region Constants & Statics |
| 7 | + |
| 8 | + private static void Main(string[] args) |
4 | 9 | { |
5 | | - private static void Main(string[] args) |
6 | | - { |
7 | | - DeserializeTest.PrivateProp_DeserializeWithJsonProperty_IsAssigned(); |
8 | | - DeserializeTest.GetonlyProp_DeserializeWithJsonProperty_IsNotAssigned(); |
9 | | - DeserializeTest.GetonlyProp_DeserializeWithField_IsAssigned(); |
10 | | - DeserializeTest.ProtectedProp_DeserializeWithField_IsAssigned(); |
11 | | - DeserializeTest.ProtectedProp_DeserializeWithJsonProperty_IsAssigned(); |
| 10 | + //DeserializeTest.PrivateProp_DeserializeWithJsonProperty_IsAssigned(); |
| 11 | + //DeserializeTest.GetonlyProp_DeserializeWithJsonProperty_IsNotAssigned(); |
| 12 | + //DeserializeTest.GetonlyProp_DeserializeWithField_IsAssigned(); |
| 13 | + //DeserializeTest.ProtectedProp_DeserializeWithField_IsAssigned(); |
| 14 | + //DeserializeTest.ProtectedProp_DeserializeWithJsonProperty_IsAssigned(); |
12 | 15 |
|
13 | | - SystemTextJsonTest.ProtectedProp_WithCtor_IsAssigned(); |
14 | | - SystemTextJsonTest.ProtectedProp_NoCtor_IsNotAssigned(); |
15 | | - SystemTextJsonTest.ProtectedProp_DeserializeWithJsonInclude_IsAssigned(); |
16 | | - SystemTextJsonTest.PrivateProp_DeserializeWithJsonInclude_IsAssigned(); |
17 | | - SystemTextJsonTest.GetonlyProp_DeserializeWithJsonInclude_IsNotAssigned(); |
18 | | - SystemTextJsonTest.GetonlyProp_DeserializeWithJsonConstructor_IsAssigned(); |
19 | | - } |
| 16 | + //SystemTextJsonTest.ProtectedProp_WithCtor_IsAssigned(); |
| 17 | + //SystemTextJsonTest.ProtectedProp_NoCtor_IsNotAssigned(); |
| 18 | + //SystemTextJsonTest.ProtectedProp_DeserializeWithJsonInclude_IsAssigned(); |
| 19 | + //SystemTextJsonTest.PrivateProp_DeserializeWithJsonInclude_IsAssigned(); |
| 20 | + //SystemTextJsonTest.GetonlyProp_DeserializeWithJsonInclude_IsNotAssigned(); |
| 21 | + //SystemTextJsonTest.GetonlyProp_DeserializeWithJsonConstructor_IsAssigned(); |
| 22 | + |
| 23 | + SystemTextJsonTestGeneratorTest.SerializeTest(); |
| 24 | + SystemTextJsonTestGeneratorTest.DeserializeTest(); |
20 | 25 | } |
| 26 | + |
| 27 | + #endregion |
| 28 | + |
21 | 29 | } |
0 commit comments