Exemplo n.º 1
0
        public void AnotherPersonInput_NoMore()
        {
            _consoleWrapper.Setup(c => c.ReadLine()).Returns("n");

            _displayer = new Displayer(_nameGenerator.Object, _taxCalculator.Object, _consoleWrapper.Object);

            Assert.IsFalse(_displayer.AnotherPerson());
        }