public void SetCaptionTextTest()
        {
            frmProjectionDialog target = new frmProjectionDialog(); // TODO: Initialize to an appropriate value
            string captionText         = string.Empty;              // TODO: Initialize to an appropriate value

            target.SetCaptionText(captionText);
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
        public void GetProjectionTest()
        {
            frmProjectionDialog target = new frmProjectionDialog(); // TODO: Initialize to an appropriate value
            string expected            = string.Empty;              // TODO: Initialize to an appropriate value
            string actual;

            actual = target.GetProjection();
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void lblCategoryTest()
        {
            frmProjectionDialog target = new frmProjectionDialog(); // 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.");
        }
        public void btnCancelTest()
        {
            frmProjectionDialog target = new frmProjectionDialog(); // 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.");
        }
        public void cboMainCategTest()
        {
            frmProjectionDialog target   = new frmProjectionDialog(); // TODO: Initialize to an appropriate value
            ComboBox            expected = null;                      // TODO: Initialize to an appropriate value
            ComboBox            actual;

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

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