public void TestMapShouldReturnCorrectValues(int?value, string expected)
        {
            var map    = new IntegerToLabelMap();
            var result = map.Map(value);

            Assert.That(result, Is.EqualTo(expected));
        }
 public void SetUp()
 {
     _map = new IntegerToLabelMap();
 }