public void RunSavedScriptTest()
        {
            frmScript target = new frmScript(); // TODO: Initialize to an appropriate value

            target.RunSavedScript();
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
        public void TopToolStripPanelTest()
        {
            frmScript      target   = new frmScript(); // TODO: Initialize to an appropriate value
            ToolStripPanel expected = null;            // TODO: Initialize to an appropriate value
            ToolStripPanel actual;

            target.TopToolStripPanel = expected;
            actual = target.TopToolStripPanel;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void GroupBox1Test()
        {
            frmScript target   = new frmScript(); // TODO: Initialize to an appropriate value
            GroupBox  expected = null;            // TODO: Initialize to an appropriate value
            GroupBox  actual;

            target.GroupBox1 = expected;
            actual           = target.GroupBox1;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void txtScriptTest()
        {
            frmScript target = new frmScript();                    // TODO: Initialize to an appropriate value

            IntellisenseEditor.IntellisenseEditor expected = null; // TODO: Initialize to an appropriate value
            IntellisenseEditor.IntellisenseEditor actual;
            target.txtScript = expected;
            actual           = target.txtScript;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void mnuCloseTest()
        {
            frmScript target = new frmScript();                     // TODO: Initialize to an appropriate value

            System.Windows.Forms.ToolStripMenuItem expected = null; // TODO: Initialize to an appropriate value
            System.Windows.Forms.ToolStripMenuItem actual;
            target.mnuClose = expected;
            actual          = target.mnuClose;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void mnuSepTest()
        {
            frmScript          target   = new frmScript(); // TODO: Initialize to an appropriate value
            ToolStripSeparator expected = null;            // TODO: Initialize to an appropriate value
            ToolStripSeparator actual;

            target.mnuSep = expected;
            actual        = target.mnuSep;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void rdCSTest()
        {
            frmScript   target   = new frmScript(); // TODO: Initialize to an appropriate value
            RadioButton expected = null;            // TODO: Initialize to an appropriate value
            RadioButton actual;

            target.rdCS = expected;
            actual      = target.rdCS;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void tbbCompileTest()
        {
            frmScript       target   = new frmScript(); // TODO: Initialize to an appropriate value
            ToolStripButton expected = null;            // TODO: Initialize to an appropriate value
            ToolStripButton actual;

            target.tbbCompile = expected;
            actual            = target.tbbCompile;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Example #9
0
        public override object EditValue(ITypeDescriptorContext context, System.IServiceProvider provider, object value)
        {
            IWindowsFormsEditorService svc = provider.GetService(typeof(IWindowsFormsEditorService)) as IWindowsFormsEditorService;

            if (svc != null)
            {
                frmScript form = new frmScript();
                form.Script = value as string;
                svc.ShowDialog(form);
                value = form.Script;
            }

            return(value);
        }
        public void frmScriptConstructorTest()
        {
            frmScript target = new frmScript();

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