public void txtNameTest()
        {
            frmOnlineScriptSubmit target = new frmOnlineScriptSubmit(); // TODO: Initialize to an appropriate value
            TextBox expected             = null;                        // TODO: Initialize to an appropriate value
            TextBox actual;

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

            target.btnSubmit = expected;
            actual           = target.btnSubmit;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void frmOnlineScriptSubmitConstructorTest()
        {
            frmOnlineScriptSubmit target = new frmOnlineScriptSubmit();

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