Exemplo 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.");
        }
Exemplo 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.");
        }
Exemplo 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.");
        }
Exemplo 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.");
        }
Exemplo n.º 5
0
        public void FillStyleEditorConstructorTest()
        {
            FillStyleEditor target = new FillStyleEditor();

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