public void DeveDecrementarVolume()
        {
            var televisao = new Televisao();
            var controle  = new ControleRemoto(televisao);

            var volumePrev = televisao.Volume;

            controle.AbaixaVolume();

            Assert.Equal(volumePrev - 1, televisao.Volume);
        }