public void TestMethod4() { var Test = new CloserTo10.Program(); var result = Test.Closer_LylesMug(13, 7); Assert.AreEqual(result, 0); }
public void TestMethod5() { var Test = new CloserTo10.Program(); var result = Test.Closer_LylesMug(-3, -5); Assert.AreEqual(result, -3); }
public void MinMinus10AndZero_Zero() { var Test = new CloserTo10.Program(); var result = Test.Closer_LylesMug(int.MaxValue, 0); Assert.AreEqual(result, 0); }
public void MinA_BCloser() { var Test = new CloserTo10.Program(); var result = Test.Closer_LylesMug(int.MinValue, 0); Assert.AreEqual(result, 0); }
public void MaxAndMin_Zero() { var Test = new CloserTo10.Program(); var result = Test.Closer_LylesMug(int.MinValue, int.MaxValue); Assert.AreEqual(result, int.MaxValue); }
public void ELippertTest1() { var Test = new CloserTo10.Program(); var result = Test.Closer_LylesMug(int.MinValue + 10, 0); Assert.AreEqual(result, 0); }
public void User2023861_test4() { var Test = new CloserTo10.Program(); var result = Test.user2023861_Closer(30, -10); Assert.AreEqual(result, 0); }