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

            commandExecutorService.VolumeDecrease();
            Assert.AreEqual(volumeBefore - 10, commandExecutorService.GetVolumeLevel());
        }