GetClassName() public method

public GetClassName ( ) : string
return string
 public void GetClassNameShouldReturnTypeArgumentName()
 {
     var expected = TypeDescriptor.GetClassName( typeof( object ) );
     var target = new CustomTypeDescriptor<object>();
     var actual = target.GetClassName();
     Assert.Equal( expected, actual );
 }