Esempio n. 1
0
        public void Should_Return_All_Companies_Names_As_String()
        {
            //given
            string expected = "Fanta, Gerber, Lays, Mirinda, Nescafe, Nestea, Pepsi, Sprite";

            //when
            string result = workService.GetAllCompaniesNamesAsString();

            //then
            Assert.That(expected, Is.EqualTo(result));
        }