Esempio n. 1
0
        public void FirstMenuChoiceReturnsAValidInteger()
        {
            using (var sr = new StringReader("2\n"))
            {
                Console.SetIn(sr);

                //Act
                StoreMethods storeMethod = new StoreMethods();

                //Assert
                int menuChoice = storeMethod.UserMenuChoice();
                Assert.InRange(menuChoice, 1, 3);
            }
        }//Test 3