public void EvaluetionMethodInfoConstructorTest() { EvaluetionMethod evaluetionMethod = new EvaluetionMethod(); // TODO: Initialize to an appropriate value float lowerLimit = 0F; // TODO: Initialize to an appropriate value float higherLimit = 0F; // TODO: Initialize to an appropriate value float step = 0F; // TODO: Initialize to an appropriate value EvaluetionMethodInfo target = new EvaluetionMethodInfo(evaluetionMethod, lowerLimit, higherLimit, step); Assert.Inconclusive("TODO: Implement code to verify target"); }
public void getHigherLimitTest() { EvaluetionMethod evaluetionMethod = new EvaluetionMethod(); // TODO: Initialize to an appropriate value float lowerLimit = 0F; // TODO: Initialize to an appropriate value float higherLimit = 0F; // TODO: Initialize to an appropriate value float step = 0F; // TODO: Initialize to an appropriate value EvaluetionMethodInfo target = new EvaluetionMethodInfo(evaluetionMethod, lowerLimit, higherLimit, step); // TODO: Initialize to an appropriate value float expected = 0F; // TODO: Initialize to an appropriate value float actual; actual = target.getHigherLimit(); Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); }
public void setEvaluetionMethodInfo(EvaluetionMethod evaluetionMethod, float lowerLimit, float higherLimit, float step) { evaluetionMethodInfo = new EvaluetionMethodInfo(evaluetionMethod, lowerLimit, higherLimit, step); }