Example #1
0
        public void Test_Add_Bus_Days_Returns_Correct_Date(double originalDateValue, int daysToAdd, double expectedDate)
        {
            Date targetDate = new Date(originalDateValue);

            Assert.AreEqual(targetDate.AddBusDays(daysToAdd).SerialValue, expectedDate);
        }