Example #1
0
        public void MuteTest()
        {
            var commandExecutor = new CommandExecutorService();
            var isMuted         = commandExecutor.IsMuted();

            commandExecutor.Mute();
            Assert.AreNotEqual(isMuted, commandExecutor.IsMuted());
        }