Esempio n. 1
0
        public void PaintValueTest()
        {
            FillStyleEditor     target = new FillStyleEditor(); // TODO: Initialize to an appropriate value
            PaintValueEventArgs e      = null;                  // TODO: Initialize to an appropriate value

            target.PaintValue(e);
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
Esempio n. 2
0
        public void GetEditStyleTest()
        {
            FillStyleEditor        target   = new FillStyleEditor();       // 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.");
        }
Esempio n. 3
0
        public void GetPaintValueSupportedTest()
        {
            FillStyleEditor        target  = new FillStyleEditor(); // TODO: Initialize to an appropriate value
            ITypeDescriptorContext context = null;                  // TODO: Initialize to an appropriate value
            bool expected = false;                                  // TODO: Initialize to an appropriate value
            bool actual;

            actual = target.GetPaintValueSupported(context);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Esempio n. 4
0
        public void EditValueTest()
        {
            FillStyleEditor        target   = new FillStyleEditor(); // 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.");
        }
Esempio n. 5
0
        public void FillStyleEditorConstructorTest()
        {
            FillStyleEditor target = new FillStyleEditor();

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