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