Exemplo n.º 1
0
        public void TestProgramFlow_Start_ShouldShowHello()
        {
            consoleInteraction.ConsoleInputRows = new List <string>()
            {
                "quit"
            };
            programFlow.Run();
            var res = new List <string>()
            {
                "Välkommen till personalregistret!",
            };

            Assert.That(res, Is.SubsetOf(consoleInteraction.ConsoleOutputRows));
        }