コード例 #1
0
        public void PaymentCountTest()
        {
            PaymentPlanSummary target   = new PaymentPlanSummary(); // TODO: Initialize to an appropriate value
            ushort             expected = 0;                        // TODO: Initialize to an appropriate value
            ushort             actual;

            target.PaymentCount = expected;
            actual = target.PaymentCount;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
コード例 #2
0
        public void FirstPaymentDateTest()
        {
            PaymentPlanSummary target   = new PaymentPlanSummary(); // TODO: Initialize to an appropriate value
            DateTime           expected = new DateTime();           // TODO: Initialize to an appropriate value
            DateTime           actual;

            target.FirstPaymentDate = expected;
            actual = target.FirstPaymentDate;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
コード例 #3
0
        public void PaymentPlanSummaryConstructorTest()
        {
            PaymentPlanSummary target = new PaymentPlanSummary();

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