BuildLight.Tests.Unit.Spikes.UsbLightSpike.ShouldTurnOnLight C# (CSharp) Method

ShouldTurnOnLight() private method

private ShouldTurnOnLight ( ) : void
return void
        public void ShouldTurnOnLight()
        {
            try
            {
                light.ChangeIndicator(DelcomIndicatorState.SolidGreen);
                Thread.Sleep(2000);
                light.ChangeIndicator(DelcomIndicatorState.FlashingGreen);
                Thread.Sleep(2000);
                light.ChangeIndicator(DelcomIndicatorState.Off);
                Thread.Sleep(1000);
                light.ChangeIndicator(DelcomIndicatorState.SolidRed);
                Thread.Sleep(2000);
                light.ChangeIndicator(DelcomIndicatorState.FlashingRed);
                Thread.Sleep(2000);
                light.ChangeIndicator(DelcomIndicatorState.Off);
                Thread.Sleep(1000);
                light.ChangeIndicator(DelcomIndicatorState.SolidBlue);
                Thread.Sleep(2000);
                light.ChangeIndicator(DelcomIndicatorState.FlashingBlue);
                Thread.Sleep(2000);
            }
            finally
            {
                light.Dispose();
            }
        }
UsbLightSpike