public void frmSetScaleConstructorTest() { string CurrentScale = string.Empty; // TODO: Initialize to an appropriate value frmSetScale target = new frmSetScale(CurrentScale); Assert.Inconclusive("TODO: Implement code to verify target"); }
public void txtNewScaleTest() { string CurrentScale = string.Empty; // TODO: Initialize to an appropriate value frmSetScale target = new frmSetScale(CurrentScale); // TODO: Initialize to an appropriate value TextBox expected = null; // TODO: Initialize to an appropriate value TextBox actual; target.txtNewScale = expected; actual = target.txtNewScale; Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); }
public void btnCancelTest() { string CurrentScale = string.Empty; // TODO: Initialize to an appropriate value frmSetScale target = new frmSetScale(CurrentScale); // 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."); }