Example #1
0
 internal static void CheckAttributes(
     MetadataReader reader,
     params CustomAttributeRow[] rows
     )
 {
     AssertEx.Equal(
         rows,
         reader.GetCustomAttributeRows(),
         itemInspector: AttributeRowToString
         );
 }
Example #2
0
 internal void VerifyCustomAttributes(IEnumerable <CustomAttributeRow> expected)
 {
     AssertEx.Equal(expected, _metadataReader.GetCustomAttributeRows(), itemInspector: AttributeRowToString);
 }