ApiApproverTests.Class_hierarchy.Should_output_implementing_interfaces_in_alphabetical_order C# (CSharp) Метод

Should_output_implementing_interfaces_in_alphabetical_order() приватный Метод

private Should_output_implementing_interfaces_in_alphabetical_order ( ) : void
Результат void
        public void Should_output_implementing_interfaces_in_alphabetical_order()
        {
            AssertPublicApi<ClassWithInterfaces>(
            @"namespace ApiApproverTests.Examples
            {
            public class ClassWithInterfaces : System.ICloneable, System.IDisposable
            {
            public ClassWithInterfaces() { }
            public object Clone() { }
            public void Dispose() { }
            }
            }");
        }