public void PictureBox4Test()
        {
            frmWelcomeScreen target   = new frmWelcomeScreen(); // TODO: Initialize to an appropriate value
            PictureBox       expected = null;                   // TODO: Initialize to an appropriate value
            PictureBox       actual;

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

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

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

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