Represents a spin box (also known as an up-down control) that displays numeric values
Inheritance: System.Windows.Forms.NumericUpDown, INumericUpDown
 public void Test_AddValueChangedHandler_WhenMapperUsingHabaneroControl_ShouldAddBehaviours()
 {
     //---------------Set up test pack-------------------
     var updWin = new NumericUpDownWin() { Name = "TestNumericUpDown", Enabled = true };
     var comboBoxMapper = new NumericUpDownMapperStub(updWin);
     //---------------Assert Precondition----------------
     Assert.IsInstanceOf<NumericUpDown>(comboBoxMapper.Control);
     //---------------Execute Test ----------------------
     var comboBoxStrategyWin = new NumericUpDownMapperStrategyWin();
     comboBoxStrategyWin.ValueChanged(comboBoxMapper);
     //---------------Assert Result----------------------
     Assert.IsTrue(true, "If an error was not thrown then we are OK");
 }