@@ -543,6 +543,8 @@ public void TemplateIsDefinedAndGetAttribute_Inherited()
543
543
544
544
CheckHasAndGetAttribute < TestBaseAttribute > ( new ImmediateType ( typeof ( TestClassOnlyInheritedAttribute ) ) , false , new TestInheritingAttribute ( 17 ) ) ;
545
545
CheckHasAndGetAttribute < TestBaseAttribute > ( new ImmediateType ( typeof ( TestClassOnlyInheritedAttribute ) ) , true , new TestInheritingAttribute ( 17 ) ) ;
546
+ CheckHasAndGetAttribute < Attribute > ( new ImmediateType ( typeof ( TestClassOnlyInheritedAttribute ) ) , false , new ThirdTestClassAttribute ( 16 ) ) ;
547
+ CheckHasAndGetAttribute < Attribute > ( new ImmediateType ( typeof ( TestClassOnlyInheritedAttribute ) ) , true , new ThirdTestClassAttribute ( 16 ) ) ;
546
548
CheckHasAndGetAttribute < TestBaseAttribute > ( new ImmediateType ( typeof ( TestClassInheritedAttribute ) ) , false , new TestBaseAttribute ( 22 ) ) ;
547
549
CheckHasAndGetAttribute < TestBaseAttribute > ( new ImmediateType ( typeof ( TestClassInheritedAttribute ) ) , true , new TestBaseAttribute ( 22 ) ) ;
548
550
@@ -552,6 +554,8 @@ public void TemplateIsDefinedAndGetAttribute_Inherited()
552
554
553
555
CheckHasAndGetAttribute < TestBaseAttribute > ( new ImmediateField ( TestFieldOnlyInheritingAttributeFieldInfo ) , false , new TestInheritingAttribute ( 19 ) ) ;
554
556
CheckHasAndGetAttribute < TestBaseAttribute > ( new ImmediateField ( TestFieldOnlyInheritingAttributeFieldInfo ) , true , new TestInheritingAttribute ( 19 ) ) ;
557
+ CheckHasAndGetAttribute < Attribute > ( new ImmediateField ( TestFieldOnlyInheritingAttributeFieldInfo ) , false , new ThirdTestClassAttribute ( 18 ) ) ;
558
+ CheckHasAndGetAttribute < Attribute > ( new ImmediateField ( TestFieldOnlyInheritingAttributeFieldInfo ) , true , new ThirdTestClassAttribute ( 18 ) ) ;
555
559
CheckHasAndGetAttribute < TestBaseAttribute > ( new ImmediateField ( TestFieldInheritingAttributeFieldInfo ) , false , new TestBaseAttribute ( 20 ) ) ;
556
560
CheckHasAndGetAttribute < TestBaseAttribute > ( new ImmediateField ( TestFieldInheritingAttributeFieldInfo ) , true , new TestBaseAttribute ( 20 ) ) ;
557
561
@@ -561,6 +565,8 @@ public void TemplateIsDefinedAndGetAttribute_Inherited()
561
565
562
566
CheckHasAndGetAttribute < TestBaseAttribute > ( new ImmediateProperty ( TestPropertyOnlyInheritingAttributePropertyInfo ) , false , new TestInheritingAttribute ( 25 ) ) ;
563
567
CheckHasAndGetAttribute < TestBaseAttribute > ( new ImmediateProperty ( TestPropertyOnlyInheritingAttributePropertyInfo ) , true , new TestInheritingAttribute ( 25 ) ) ;
568
+ CheckHasAndGetAttribute < Attribute > ( new ImmediateProperty ( TestPropertyOnlyInheritingAttributePropertyInfo ) , false , new ThirdTestClassAttribute ( 24 ) ) ;
569
+ CheckHasAndGetAttribute < Attribute > ( new ImmediateProperty ( TestPropertyOnlyInheritingAttributePropertyInfo ) , true , new ThirdTestClassAttribute ( 24 ) ) ;
564
570
CheckHasAndGetAttribute < TestBaseAttribute > ( new ImmediateProperty ( TestPropertyInheritingAttributePropertyInfo ) , false , new TestBaseAttribute ( 26 ) ) ;
565
571
CheckHasAndGetAttribute < TestBaseAttribute > ( new ImmediateProperty ( TestPropertyInheritingAttributePropertyInfo ) , true , new TestBaseAttribute ( 26 ) ) ;
566
572
@@ -835,6 +841,18 @@ private static IEnumerable<TestCaseData> CreateGetAttributesTestCases
835
841
true ,
836
842
new [ ] { new TestInheritingAttribute ( 17 ) } ) ;
837
843
844
+ yield return new TestCaseData (
845
+ new ImmediateType ( typeof ( TestClassOnlyInheritedAttribute ) ) ,
846
+ typeof ( Attribute ) ,
847
+ false ,
848
+ new Attribute [ ] { new ThirdTestClassAttribute ( 16 ) , new TestInheritingAttribute ( 17 ) } ) ;
849
+
850
+ yield return new TestCaseData (
851
+ new ImmediateType ( typeof ( TestClassOnlyInheritedAttribute ) ) ,
852
+ typeof ( Attribute ) ,
853
+ true ,
854
+ new Attribute [ ] { new ThirdTestClassAttribute ( 16 ) , new TestInheritingAttribute ( 17 ) } ) ;
855
+
838
856
yield return new TestCaseData (
839
857
new ImmediateType ( typeof ( TestClassInheritedAttribute ) ) ,
840
858
typeof ( TestBaseAttribute ) ,
@@ -940,6 +958,18 @@ private static IEnumerable<TestCaseData> CreateGetAttributesTestCases
940
958
true ,
941
959
new [ ] { new TestInheritingAttribute ( 19 ) } ) ;
942
960
961
+ yield return new TestCaseData (
962
+ new ImmediateField ( TestFieldOnlyInheritingAttributeFieldInfo ) ,
963
+ typeof ( Attribute ) ,
964
+ false ,
965
+ new Attribute [ ] { new ThirdTestClassAttribute ( 18 ) , new TestInheritingAttribute ( 19 ) } ) ;
966
+
967
+ yield return new TestCaseData (
968
+ new ImmediateField ( TestFieldOnlyInheritingAttributeFieldInfo ) ,
969
+ typeof ( Attribute ) ,
970
+ true ,
971
+ new Attribute [ ] { new ThirdTestClassAttribute ( 18 ) , new TestInheritingAttribute ( 19 ) } ) ;
972
+
943
973
yield return new TestCaseData (
944
974
new ImmediateField ( TestFieldInheritingAttributeFieldInfo ) ,
945
975
typeof ( TestBaseAttribute ) ,
@@ -1084,6 +1114,18 @@ private static IEnumerable<TestCaseData> CreateGetAttributesTestCases
1084
1114
true ,
1085
1115
new [ ] { new TestInheritingAttribute ( 25 ) } ) ;
1086
1116
1117
+ yield return new TestCaseData (
1118
+ new ImmediateProperty ( TestPropertyOnlyInheritingAttributePropertyInfo ) ,
1119
+ typeof ( Attribute ) ,
1120
+ false ,
1121
+ new Attribute [ ] { new ThirdTestClassAttribute ( 24 ) , new TestInheritingAttribute ( 25 ) } ) ;
1122
+
1123
+ yield return new TestCaseData (
1124
+ new ImmediateProperty ( TestPropertyOnlyInheritingAttributePropertyInfo ) ,
1125
+ typeof ( Attribute ) ,
1126
+ true ,
1127
+ new Attribute [ ] { new ThirdTestClassAttribute ( 24 ) , new TestInheritingAttribute ( 25 ) } ) ;
1128
+
1087
1129
yield return new TestCaseData (
1088
1130
new ImmediateProperty ( TestPropertyInheritingAttributePropertyInfo ) ,
1089
1131
typeof ( TestBaseAttribute ) ,
@@ -1236,6 +1278,8 @@ public void TemplateGetAttributes_Inherited()
1236
1278
1237
1279
CheckGetAttributes < TestBaseAttribute > ( new ImmediateType ( typeof ( TestClassOnlyInheritedAttribute ) ) , false , new [ ] { new TestInheritingAttribute ( 17 ) } ) ;
1238
1280
CheckGetAttributes < TestBaseAttribute > ( new ImmediateType ( typeof ( TestClassOnlyInheritedAttribute ) ) , true , new [ ] { new TestInheritingAttribute ( 17 ) } ) ;
1281
+ CheckGetAttributes < Attribute > ( new ImmediateType ( typeof ( TestClassOnlyInheritedAttribute ) ) , false , new Attribute [ ] { new ThirdTestClassAttribute ( 16 ) , new TestInheritingAttribute ( 17 ) } ) ;
1282
+ CheckGetAttributes < Attribute > ( new ImmediateType ( typeof ( TestClassOnlyInheritedAttribute ) ) , true , new Attribute [ ] { new ThirdTestClassAttribute ( 16 ) , new TestInheritingAttribute ( 17 ) } ) ;
1239
1283
CheckGetAttributes < TestBaseAttribute > ( new ImmediateType ( typeof ( TestClassInheritedAttribute ) ) , false , new [ ] { new TestBaseAttribute ( 22 ) , new TestInheritingAttribute ( 23 ) } ) ;
1240
1284
CheckGetAttributes < TestBaseAttribute > ( new ImmediateType ( typeof ( TestClassInheritedAttribute ) ) , true , new [ ] { new TestBaseAttribute ( 22 ) , new TestInheritingAttribute ( 23 ) } ) ;
1241
1285
@@ -1245,6 +1289,8 @@ public void TemplateGetAttributes_Inherited()
1245
1289
1246
1290
CheckGetAttributes < TestBaseAttribute > ( new ImmediateField ( TestFieldOnlyInheritingAttributeFieldInfo ) , false , new [ ] { new TestInheritingAttribute ( 19 ) } ) ;
1247
1291
CheckGetAttributes < TestBaseAttribute > ( new ImmediateField ( TestFieldOnlyInheritingAttributeFieldInfo ) , true , new [ ] { new TestInheritingAttribute ( 19 ) } ) ;
1292
+ CheckGetAttributes < Attribute > ( new ImmediateField ( TestFieldOnlyInheritingAttributeFieldInfo ) , false , new Attribute [ ] { new ThirdTestClassAttribute ( 18 ) , new TestInheritingAttribute ( 19 ) } ) ;
1293
+ CheckGetAttributes < Attribute > ( new ImmediateField ( TestFieldOnlyInheritingAttributeFieldInfo ) , true , new Attribute [ ] { new ThirdTestClassAttribute ( 18 ) , new TestInheritingAttribute ( 19 ) } ) ;
1248
1294
CheckGetAttributes < TestBaseAttribute > ( new ImmediateField ( TestFieldInheritingAttributeFieldInfo ) , false , new [ ] { new TestBaseAttribute ( 20 ) , new TestInheritingAttribute ( 21 ) } ) ;
1249
1295
CheckGetAttributes < TestBaseAttribute > ( new ImmediateField ( TestFieldInheritingAttributeFieldInfo ) , true , new [ ] { new TestBaseAttribute ( 20 ) , new TestInheritingAttribute ( 21 ) } ) ;
1250
1296
@@ -1254,6 +1300,8 @@ public void TemplateGetAttributes_Inherited()
1254
1300
1255
1301
CheckGetAttributes < TestBaseAttribute > ( new ImmediateProperty ( TestPropertyOnlyInheritingAttributePropertyInfo ) , false , new [ ] { new TestInheritingAttribute ( 25 ) } ) ;
1256
1302
CheckGetAttributes < TestBaseAttribute > ( new ImmediateProperty ( TestPropertyOnlyInheritingAttributePropertyInfo ) , true , new [ ] { new TestInheritingAttribute ( 25 ) } ) ;
1303
+ CheckGetAttributes < Attribute > ( new ImmediateProperty ( TestPropertyOnlyInheritingAttributePropertyInfo ) , false , new Attribute [ ] { new ThirdTestClassAttribute ( 24 ) , new TestInheritingAttribute ( 25 ) } ) ;
1304
+ CheckGetAttributes < Attribute > ( new ImmediateProperty ( TestPropertyOnlyInheritingAttributePropertyInfo ) , true , new Attribute [ ] { new ThirdTestClassAttribute ( 24 ) , new TestInheritingAttribute ( 25 ) } ) ;
1257
1305
CheckGetAttributes < TestBaseAttribute > ( new ImmediateProperty ( TestPropertyInheritingAttributePropertyInfo ) , false , new [ ] { new TestBaseAttribute ( 26 ) , new TestInheritingAttribute ( 27 ) } ) ;
1258
1306
CheckGetAttributes < TestBaseAttribute > ( new ImmediateProperty ( TestPropertyInheritingAttributePropertyInfo ) , true , new [ ] { new TestBaseAttribute ( 26 ) , new TestInheritingAttribute ( 27 ) } ) ;
1259
1307
0 commit comments