Beispiel #1
0
        public void Should_Return_Lower_Case_Name_Of_All_Holdings()
        {
            //given
            List <string> expected = new List <string>()
            {
                "coca-cola",
                "nestle",
                "pepsico"
            };

            //when
            List <string> result = workService.GetHoldingNames();

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