Esempio n. 1
0
        public void SetSingleColourRampTest()
        {
            RampDialog target = new RampDialog(); // TODO: Initialize to an appropriate value

            target.SetSingleColourRamp();
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
Esempio n. 2
0
        public void GetValuesTest()
        {
            RampDialog target   = new RampDialog(); // TODO: Initialize to an appropriate value
            RampInfo   expected = new RampInfo();   // TODO: Initialize to an appropriate value
            RampInfo   actual;

            actual = target.GetValues();
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Esempio n. 3
0
        public void pnlPreviewTest()
        {
            RampDialog target   = new RampDialog(); // TODO: Initialize to an appropriate value
            Panel      expected = null;             // TODO: Initialize to an appropriate value
            Panel      actual;

            target.pnlPreview = expected;
            actual            = target.pnlPreview;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Esempio n. 4
0
        public void txtNumBreaksTest()
        {
            RampDialog target   = new RampDialog(); // TODO: Initialize to an appropriate value
            TextBox    expected = null;             // TODO: Initialize to an appropriate value
            TextBox    actual;

            target.txtNumBreaks = expected;
            actual = target.txtNumBreaks;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Esempio n. 5
0
        public void btnCancelTest()
        {
            RampDialog target   = new RampDialog(); // TODO: Initialize to an appropriate value
            Button     expected = null;             // TODO: Initialize to an appropriate value
            Button     actual;

            target.btnCancel = expected;
            actual           = target.btnCancel;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Esempio n. 6
0
        public void chkSingleColorRampTest()
        {
            RampDialog target   = new RampDialog(); // TODO: Initialize to an appropriate value
            CheckBox   expected = null;             // TODO: Initialize to an appropriate value
            CheckBox   actual;

            target.chkSingleColorRamp = expected;
            actual = target.chkSingleColorRamp;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Esempio n. 7
0
        public void lblEndColorTest()
        {
            RampDialog target   = new RampDialog(); // TODO: Initialize to an appropriate value
            Label      expected = null;             // TODO: Initialize to an appropriate value
            Label      actual;

            target.lblEndColor = expected;
            actual             = target.lblEndColor;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Esempio n. 8
0
        public void ColorFromAhsbTest()
        {
            RampDialog target   = new RampDialog(); // TODO: Initialize to an appropriate value
            int        a        = 0;                // TODO: Initialize to an appropriate value
            double     h        = 0F;               // TODO: Initialize to an appropriate value
            double     s        = 0F;               // TODO: Initialize to an appropriate value
            double     b        = 0F;               // TODO: Initialize to an appropriate value
            Color      expected = new Color();      // TODO: Initialize to an appropriate value
            Color      actual;

            actual = target.ColorFromAhsb(a, h, s, b);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Esempio n. 9
0
        public void RampDialogConstructorTest()
        {
            RampDialog target = new RampDialog();

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