@@ -1603,7 +1603,7 @@ public void TestHasInitOnlyFieldWithBothConstructor_Success()
16031603 var result = serializer.Unpack( stream );
16041604 // check the member value deserialized properly.
16051605 Assert.That( result.Member, Is.EqualTo( "123" ) );
1606- Assert.That( result.WasProperConstructorUsed );
1606+ Assert.That( result.WasProperConstructorUsed() );
16071607 }
16081608 }
16091609
@@ -1656,7 +1656,7 @@ public void TestHasInitOnlyFieldWithAnnotatedConstructor_Success()
16561656 var result = serializer.Unpack( stream );
16571657 // dummy annotated constructor does not take the value, so the deserialized value should be "default" of the type.
16581658 Assert.That( result.Member, Is.EqualTo( "ABC" ) );
1659- Assert.That( result.WasProperConstructorUsed );
1659+ Assert.That( result.WasProperConstructorUsed() );
16601660 }
16611661 }
16621662
@@ -1814,7 +1814,7 @@ public void TestHasReadWriteFieldWithBothConstructor_Success()
18141814 var result = serializer.Unpack( stream );
18151815 // check the member value deserialized properly.
18161816 Assert.That( result.Member, Is.EqualTo( "123" ) );
1817- Assert.That( result.WasProperConstructorUsed );
1817+ Assert.That( result.WasProperConstructorUsed() );
18181818 }
18191819 }
18201820
@@ -1867,7 +1867,7 @@ public void TestHasReadWriteFieldWithAnnotatedConstructor_Success()
18671867 var result = serializer.Unpack( stream );
18681868 // dummy annotated constructor does not take the value, so the deserialized value should be "default" of the type.
18691869 Assert.That( result.Member, Is.EqualTo( "ABC" ) );
1870- Assert.That( result.WasProperConstructorUsed );
1870+ Assert.That( result.WasProperConstructorUsed() );
18711871 }
18721872 }
18731873
@@ -1978,7 +1978,7 @@ public void TestHasGetOnlyPropertyWithBothConstructor_Success()
19781978 var result = serializer.Unpack( stream );
19791979 // check the member value deserialized properly.
19801980 Assert.That( result.Member, Is.EqualTo( "123" ) );
1981- Assert.That( result.WasProperConstructorUsed );
1981+ Assert.That( result.WasProperConstructorUsed() );
19821982 }
19831983 }
19841984
@@ -2031,7 +2031,7 @@ public void TestHasGetOnlyPropertyWithAnnotatedConstructor_Success()
20312031 var result = serializer.Unpack( stream );
20322032 // dummy annotated constructor does not take the value, so the deserialized value should be "default" of the type.
20332033 Assert.That( result.Member, Is.EqualTo( "ABC" ) );
2034- Assert.That( result.WasProperConstructorUsed );
2034+ Assert.That( result.WasProperConstructorUsed() );
20352035 }
20362036 }
20372037
@@ -2189,7 +2189,7 @@ public void TestHasPrivateSetterPropertyWithBothConstructor_Success()
21892189 var result = serializer.Unpack( stream );
21902190 // check the member value deserialized properly.
21912191 Assert.That( result.Member, Is.EqualTo( "123" ) );
2192- Assert.That( result.WasProperConstructorUsed );
2192+ Assert.That( result.WasProperConstructorUsed() );
21932193 }
21942194 }
21952195
@@ -2242,7 +2242,7 @@ public void TestHasPrivateSetterPropertyWithAnnotatedConstructor_Success()
22422242 var result = serializer.Unpack( stream );
22432243 // dummy annotated constructor does not take the value, so the deserialized value should be "default" of the type.
22442244 Assert.That( result.Member, Is.EqualTo( "ABC" ) );
2245- Assert.That( result.WasProperConstructorUsed );
2245+ Assert.That( result.WasProperConstructorUsed() );
22462246 }
22472247 }
22482248
@@ -2400,7 +2400,7 @@ public void TestHasPublicSetterPropertyWithBothConstructor_Success()
24002400 var result = serializer.Unpack( stream );
24012401 // check the member value deserialized properly.
24022402 Assert.That( result.Member, Is.EqualTo( "123" ) );
2403- Assert.That( result.WasProperConstructorUsed );
2403+ Assert.That( result.WasProperConstructorUsed() );
24042404 }
24052405 }
24062406
@@ -2453,7 +2453,7 @@ public void TestHasPublicSetterPropertyWithAnnotatedConstructor_Success()
24532453 var result = serializer.Unpack( stream );
24542454 // dummy annotated constructor does not take the value, so the deserialized value should be "default" of the type.
24552455 Assert.That( result.Member, Is.EqualTo( "ABC" ) );
2456- Assert.That( result.WasProperConstructorUsed );
2456+ Assert.That( result.WasProperConstructorUsed() );
24572457 }
24582458 }
24592459
@@ -2613,7 +2613,7 @@ public void TestHasInitOnlyAppendableCollectionFieldWithBothConstructor_Success(
26132613 var result = serializer.Unpack( stream );
26142614 // check the member value deserialized properly.
26152615 Assert.That( result.Member, Is.EqualTo( new List<string>{ "123" } ) );
2616- Assert.That( result.WasProperConstructorUsed );
2616+ Assert.That( result.WasProperConstructorUsed() );
26172617 }
26182618 }
26192619
@@ -2667,7 +2667,7 @@ public void TestHasInitOnlyAppendableCollectionFieldWithAnnotatedConstructor_Suc
26672667 var result = serializer.Unpack( stream );
26682668 // dummy annotated constructor does not take the value, so the deserialized value should be "default" of the type.
26692669 Assert.That( result.Member, Is.EqualTo( new List<string>() ) );
2670- Assert.That( result.WasProperConstructorUsed );
2670+ Assert.That( result.WasProperConstructorUsed() );
26712671 }
26722672 }
26732673
@@ -2828,7 +2828,7 @@ public void TestHasReadWriteAppendableCollectionFieldWithBothConstructor_Success
28282828 var result = serializer.Unpack( stream );
28292829 // check the member value deserialized properly.
28302830 Assert.That( result.Member, Is.EqualTo( new List<string>{ "123" } ) );
2831- Assert.That( result.WasProperConstructorUsed );
2831+ Assert.That( result.WasProperConstructorUsed() );
28322832 }
28332833 }
28342834
@@ -2882,7 +2882,7 @@ public void TestHasReadWriteAppendableCollectionFieldWithAnnotatedConstructor_Su
28822882 var result = serializer.Unpack( stream );
28832883 // dummy annotated constructor does not take the value, so the deserialized value should be "default" of the type.
28842884 Assert.That( result.Member, Is.EqualTo( new List<string>() ) );
2885- Assert.That( result.WasProperConstructorUsed );
2885+ Assert.That( result.WasProperConstructorUsed() );
28862886 }
28872887 }
28882888
@@ -3043,7 +3043,7 @@ public void TestHasGetOnlyAppendableCollectionPropertyWithBothConstructor_Succes
30433043 var result = serializer.Unpack( stream );
30443044 // check the member value deserialized properly.
30453045 Assert.That( result.Member, Is.EqualTo( new List<string>{ "123" } ) );
3046- Assert.That( result.WasProperConstructorUsed );
3046+ Assert.That( result.WasProperConstructorUsed() );
30473047 }
30483048 }
30493049
@@ -3097,7 +3097,7 @@ public void TestHasGetOnlyAppendableCollectionPropertyWithAnnotatedConstructor_S
30973097 var result = serializer.Unpack( stream );
30983098 // dummy annotated constructor does not take the value, so the deserialized value should be "default" of the type.
30993099 Assert.That( result.Member, Is.EqualTo( new List<string>() ) );
3100- Assert.That( result.WasProperConstructorUsed );
3100+ Assert.That( result.WasProperConstructorUsed() );
31013101 }
31023102 }
31033103
@@ -3258,7 +3258,7 @@ public void TestHasPrivateSetterAppendableCollectionPropertyWithBothConstructor_
32583258 var result = serializer.Unpack( stream );
32593259 // check the member value deserialized properly.
32603260 Assert.That( result.Member, Is.EqualTo( new List<string>{ "123" } ) );
3261- Assert.That( result.WasProperConstructorUsed );
3261+ Assert.That( result.WasProperConstructorUsed() );
32623262 }
32633263 }
32643264
@@ -3312,7 +3312,7 @@ public void TestHasPrivateSetterAppendableCollectionPropertyWithAnnotatedConstru
33123312 var result = serializer.Unpack( stream );
33133313 // dummy annotated constructor does not take the value, so the deserialized value should be "default" of the type.
33143314 Assert.That( result.Member, Is.EqualTo( new List<string>() ) );
3315- Assert.That( result.WasProperConstructorUsed );
3315+ Assert.That( result.WasProperConstructorUsed() );
33163316 }
33173317 }
33183318
@@ -3473,7 +3473,7 @@ public void TestHasPublicSetterAppendableCollectionPropertyWithBothConstructor_S
34733473 var result = serializer.Unpack( stream );
34743474 // check the member value deserialized properly.
34753475 Assert.That( result.Member, Is.EqualTo( new List<string>{ "123" } ) );
3476- Assert.That( result.WasProperConstructorUsed );
3476+ Assert.That( result.WasProperConstructorUsed() );
34773477 }
34783478 }
34793479
@@ -3527,7 +3527,7 @@ public void TestHasPublicSetterAppendableCollectionPropertyWithAnnotatedConstruc
35273527 var result = serializer.Unpack( stream );
35283528 // dummy annotated constructor does not take the value, so the deserialized value should be "default" of the type.
35293529 Assert.That( result.Member, Is.EqualTo( new List<string>() ) );
3530- Assert.That( result.WasProperConstructorUsed );
3530+ Assert.That( result.WasProperConstructorUsed() );
35313531 }
35323532 }
35333533
0 commit comments