在过去的一个月里,我一直在使用自动评分器,我的一个理解材料的学生似乎由于返回“null”而不断地让我的 JUnit 测试用例失败。由于是Java I课程,所以System.out.println()
暂时还在用。因此,我使用系统规则来解析它们的输出。
学生提交:
import java.util.Scanner;
public class DistanceFormula {
public static void main(String[] args) {
//Declarations
double distance;
double differenceX;
double differenceY;
double firstX;
double secondX;
double firstY;
double secondY;
//User Input for the First X value (X value for Point 1)
System.out.println("Enter In The value of X for point 1:");
Scanner inputFirstX = new Scanner(System.in);
firstX = inputFirstX.nextDouble();
//User Input for the First Y value (Y value for Point 1)
System.out.println("Enter In The value of Y for point 1:");
Scanner inputFirstY = new Scanner(System.in);
firstY = inputFirstY.nextDouble();
//User Input for Second X value (X value for point 2)
System.out.println("Enter In The value of X for point 2:");
Scanner inputSecondX = new Scanner(System.in);
secondX = inputSecondX.nextDouble();
//User Input for Second Y value (Y value for point 2)
System.out.println("Enter In The value of Y for point 2:");
Scanner inputSecondY = new Scanner(System.in);
secondY = inputSecondY.nextDouble();
//Find the difference of each point
differenceX = secondX - firstX;
differenceY = secondY - firstY;
//Distance Formula
distance = Math.sqrt((Math.pow(differenceX, 2)) + (Math.pow(differenceY, 2)));
//Displaying the outcome
System.out.println("Your First Point: " + firstX + "," + firstY + "\n" + "Your Second Point: " +
secondX + "," + secondY + "\n" + "The distance between the two points is: " + distance);
}
}
我的一个测试用例:
@Rule
public final StandardOutputStreamLog outlog = new StandardOutputStreamLog();
@Rule
public final TextFromStandardInputStream systemInMock = emptyStandardInputStream();
...
@Test(timeout=5000)
public void tests1() {
double x1 = 5.0;
double y1 = 5.0;
double x2 = 4.5;
double y2 = 4.5;
systemInMock.provideText(x1+"\n"+y1+"\n"+x2+"\n"+y2+"\n");
TestFile.main(new String[]{});
String reality = outlog.getLog().toLowerCase();
double calc = distance(x1,y1,x2,y2);
boolean result = reality.contains(calc+"");
assertTrue("Testing "+x1+" "+y1+" "+x2+" "+y2+" ", result);
}
最后,我的 TestRunner:
// JUnit
import org.junit.runner.JUnitCore;
import org.junit.runner.Result;
import org.junit.runner.notification.Failure;
// SimpleJSON
import org.json.simple.JSONObject;
import org.json.simple.JSONArray;
public class TestRunner {
@SuppressWarnings("unchecked")
public static void main(String[] args) {
JSONObject obj = new JSONObject();
Result result = JUnitCore.runClasses(TestJunit.class);
double tests = result.getRunCount();
double fails = result.getFailureCount();
obj.put("tests", tests);
obj.put("fails", fails);
//System.out.println("Testing Complete\n---------------------------");
//System.out.printf("Run Time of Tests:\t%d ms\n", result.getRunTime());
//System.out.printf("Number of Tests:\t%d\n", (int)tests);
if (result.wasSuccessful()){
//System.out.println("All Tests Successful");
} else {
//System.out.println("Test Fails\n---------------------------");
JSONArray failures = new JSONArray();
System.out.printf("Number of Fails:\t%d\n", (int)fails);
for (Failure failure : result.getFailures()) {
String header = failure.getTestHeader();
String msg = failure.getMessage();
if (msg.contains("timed out")){
failures.add(header + " " + msg);
System.out.println(header + " " + msg);
} else {
failures.add(msg);
System.out.println(msg);
}
obj.put("failures", failures);
}
}
//System.out.println("Results\n---------------------------");
double grade = 100.0 * (double)((tests - fails)/tests);
obj.put("grade", grade);
System.out.printf("Grade:\t\t\t%.1f%%\n", grade);
System.out.print("JSON:\n");
System.out.println(obj);
}
}
在 TestRunnerif (msg.contains("timed out"))
中会出错,因为 msg 是null
.
如果我运行学生的代码或测试其他人的工作,测试运行得非常好。如果这是我的问题,我想修复它。谢谢!