System.Diagnostics.Tests.DebuggerDisplayAttributeTests.Type_Set_GetReturnsExpected C# (CSharp) Method

Type_Set_GetReturnsExpected() private method

private Type_Set_GetReturnsExpected ( string type ) : void
type string
return void
        public void Type_Set_GetReturnsExpected(string type)
        {
            var attribute = new DebuggerDisplayAttribute("Value") { Type = type };
            Assert.Equal(type, attribute.Type);
        }