ApiApproverTests.Class_hierarchy.Should_output_implementing_interfaces_in_alphabetical_order C# (CSharp) Method

Should_output_implementing_interfaces_in_alphabetical_order() private method

        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() { }
            }
            }");
        }