Esempio n. 1
0
        public void IsMonthlyInvoice_Test(string title, bool shouldBeMonthly)
        {
            // arrange
            InvoiceModel model = new InvoiceModel();

            // act
            bool isMonthly = model.IsMonthlyInvoice(title);

            // assert
            Assert.AreEqual(shouldBeMonthly, isMonthly);
        }