public void TestMethod1() // Test metody czy string który zwraca jest w postaci html { //Arrange Product mc = new MainCourse("Schabowy z fryktami", 30); Product pizza = new Pizza("Pizza Tosca z podwójnym serem", 27); Product cola = new DrinkSoup("Cola", 5); List <Product> list = new List <Product>(); list.Add(mc); list.Add(pizza); list.Add(cola); Order order = new Order(list); //Act string htmlText = MailSender.ContentEmail(order); //htmlText = "cos"; // powinien byc blad //Assert Assert.IsTrue(htmlText != HttpUtility.HtmlEncode(htmlText)); // konwertuje text na html }