Esempio n. 1
0
        //Arrange
        public void StartMenuHasCorrectOutput()
        {
            using (var sw = new StringWriter())
            {
                Console.SetOut(sw);

                // Act statement ...
                StoreMethods storeMethod = new StoreMethods();
                storeMethod.StartMenu();

                // Assert statement ...
                Assert.Equal("\t\t\tWelcome to Slaughtoria Games!\n\t\t\tOnly true 5head gamers shop here!\r\n", sw.ToString());
                sw.Close();
            }
        }//Test 2