コード例 #1
0
        public void FromStringTest()
        {
            frmCustomProjection target = new frmCustomProjection(); // TODO: Initialize to an appropriate value
            string projString          = string.Empty;              // TODO: Initialize to an appropriate value

            target.FromString(projString);
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
コード例 #2
0
        public void AskUserTest()
        {
            frmCustomProjection target = new frmCustomProjection(); // TODO: Initialize to an appropriate value
            string expected            = string.Empty;              // TODO: Initialize to an appropriate value
            string actual;

            actual = target.AskUser();
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
コード例 #3
0
        public void txtNameTest()
        {
            frmCustomProjection target   = new frmCustomProjection(); // 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.");
        }
コード例 #4
0
        public void btnCancelTest()
        {
            frmCustomProjection target = new frmCustomProjection(); // 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.");
        }
コード例 #5
0
        public void lblCategoryTest()
        {
            frmCustomProjection target = new frmCustomProjection(); // TODO: Initialize to an appropriate value
            Label expected             = null;                      // TODO: Initialize to an appropriate value
            Label actual;

            target.lblCategory = expected;
            actual             = target.lblCategory;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
コード例 #6
0
        public void frmCustomProjectionConstructorTest()
        {
            frmCustomProjection target = new frmCustomProjection();

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