예제 #1
0
        public void UpdateCreateSalesReportBLLStatusTextTest2()
        {
            //Arrange
            UpdateCreateSalesReportBLL updateCreateSalesReportBLL = new UpdateCreateSalesReportBLL();

            //Act
            string Text = updateCreateSalesReportBLL.StatusText(true);

            //Assert
            Assert.AreEqual("Second Hand", Text);
        }
예제 #2
0
        public void UpdateCreateSalesReportBLLStatusTextTest()
        {
            //Arrange
            UpdateCreateSalesReportBLL updateCreateSalesReportBLL = new UpdateCreateSalesReportBLL();

            //Act
            string Text = updateCreateSalesReportBLL.StatusText(false);

            //Assert
            Assert.AreEqual("Factory New", Text);
        }