public void DockEditor_GetEditStyle_Invoke_ReturnsModal(ITypeDescriptorContext context)
        {
            var editor = new DockEditor();

            Assert.Equal(UITypeEditorEditStyle.DropDown, editor.GetEditStyle(context));
        }
Beispiel #2
0
 public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorContext context)
 {
     return(editor.GetEditStyle(context));
 }