RemoveExistingAssemblyAttribute() публичный Метод

public RemoveExistingAssemblyAttribute ( string code, Type attributeType ) : string
code string
attributeType System.Type
Результат string
 public void RemoveExistingAssemblyAttribute_Should_Correctly_Remove_The_Attribute()
 {
     var modifier = new AssemblyInfoModifier();
     var result = modifier.RemoveExistingAssemblyAttribute(TestData.AssemblyInfoContent_WebApi, typeof(AssemblyVersionAttribute));
     StringAssert.DoesNotContain("AssemblyVersion", result);
 }