Exemplo n.º 1
0
        public void PrintCalendarToPdf_EmptyDates_FileReturned()
        {
            //Arrange
            string from = "";
            string to   = "";

            //Act
            var result = controller.printCalendarToPdf(from, to, "");

            //Assert
            Assert.AreEqual(typeof(FileContentResult), result.GetType());
        }