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

Ctor_Value() private method

private Ctor_Value ( string value ) : void
value string
return void
        public void Ctor_Value(string value)
        {
            var attribute = new DebuggerDisplayAttribute(value);
            Assert.Equal(string.Empty, attribute.Name);
            Assert.Equal(value ?? string.Empty, attribute.Value);
            Assert.Equal(string.Empty, attribute.Type);
            Assert.Null(attribute.Target);
            Assert.Null(attribute.TargetTypeName);
        }