public void GetEditStyleTest()
        {
            PointImageSchemeEditor target   = new PointImageSchemeEditor(); // TODO: Initialize to an appropriate value
            ITypeDescriptorContext Context  = null;                         // TODO: Initialize to an appropriate value
            UITypeEditorEditStyle  expected = new UITypeEditorEditStyle();  // TODO: Initialize to an appropriate value
            UITypeEditorEditStyle  actual;

            actual = target.GetEditStyle(Context);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void EditValueTest()
        {
            PointImageSchemeEditor target   = new PointImageSchemeEditor(); // TODO: Initialize to an appropriate value
            ITypeDescriptorContext context  = null;                         // TODO: Initialize to an appropriate value
            IServiceProvider       provider = null;                         // TODO: Initialize to an appropriate value
            object value    = null;                                         // TODO: Initialize to an appropriate value
            object expected = null;                                         // TODO: Initialize to an appropriate value
            object actual;

            actual = target.EditValue(context, provider, value);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void PointImageSchemeEditorConstructorTest()
        {
            PointImageSchemeEditor target = new PointImageSchemeEditor();

            Assert.Inconclusive("TODO: Implement code to verify target");
        }