public void ShouldGenerateTheCorrectOutput(int value, string expectedValue)
        {
            var generator = new RowGeneratorSeconds();
            var result    = generator.Generate(value);

            Assert.That(result, Is.EqualTo(expectedValue));
        }
 public void ThenThisTopSecondLampShouldBe(string expectedTopSecondIndicatorOutput)
 {
     Assert.AreEqual(_topSeconds.Generate(_thisSecond), expectedTopSecondIndicatorOutput);
 }