だから私は私の手に少し謎を抱えています。メソッドにいくつかのパラメーターを渡していますが、メソッドが実行されません。パラメータ自体がnullでないことを確認しました。メソッドの最初の行 (単純な ) も実行しませんSystem.out.println()
。何が問題なのですか?
検討中の方法は次のとおりです。
public static void passedTest(String title, String startPhase, String endPhase,
String startTime, String endTime, long startMilli, long endMilli, String testNum) {
System.out.println("PASSED");
endMilli = System.currentTimeMillis();
totalLength += (endMilli - startMilli);
passedCount++;
try {
out.newLine();
out.write("Test Case " + testNum);
out.newLine();
out.newLine();
out.write(title + " --- " + startPhase.toUpperCase() + " to "
+ endPhase.toUpperCase());
out.newLine();
out.write("PASSED");
out.newLine();
out.write("__________________________________________");
out.newLine();
out.write("");
out.newLine();
out.write("\tSTARTED: " + startTime);
out.newLine();
out.write("\tENDED: " + endTime);
out.newLine();
out.write("\tDURATION: " + timeConverter(endMilli - startMilli));
out.newLine();
out.write("");
out.newLine();
out.write("--------------------------------------------------------------------------------------------------------------------------------------------------");
out.newLine();
out.write("--------------------------------------------------------------------------------------------------------------------------------------------------");
out.newLine();
} catch (IOException e) {
}
}