public void _M12_ShouldSetBeetleRightPropertyToTrueWhenHittingRightButton()
 {
     _rightButton.FireClickEvent();
     Assert.That(BeetleHelper.GetRightProperty(_beetleObject), Is.True, "Hitting the <Right> button should change Right property on Beetle to true");
 }
 public void _M11_ShouldSetBeetleRightPropertyToFalseWhenHittingLeftButton()
 {
     _leftButton.FireClickEvent();
     Assert.That(BeetleHelper.GetRightProperty(_beetleObject), Is.False, "Hitting the <Left> button should change Right property on Beetle to false");
 }