Example #1
0
        public void VolumeIncreaseTest()
        {
            CommandExecutorService commandExecutorService = new CommandExecutorService();
            var volumeBefore = commandExecutorService.GetVolumeLevel();

            commandExecutorService.VolumeIncrease();
            Assert.AreEqual(volumeBefore + 10, commandExecutorService.GetVolumeLevel());
        }