Skip to content

Commit

Permalink
Update ResultAnalyzer.java
Browse files Browse the repository at this point in the history
  • Loading branch information
Dogancan94 authored Mar 11, 2024
1 parent b1599fa commit f7cfa0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/ResultAnalyzer.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@

public class ResultAnalyzer implements TestWatcher, AfterAllCallback {
private List<TestResultStatus> testResultsStatus = new ArrayList<>();
private static final String taskId = "148";

private enum TestResultStatus {
SUCCESSFUL, ABORTED, FAILED, DISABLED;
Expand Down Expand Up @@ -54,7 +55,6 @@ public void afterAll(ExtensionContext context) throws Exception {
long failure = summary.get(TestResultStatus.FAILED) != null ? summary.get(TestResultStatus.FAILED) : 0;

long score = success / (success + failure);
String taskId = "1";
String userId = "999999";

JSONObject json = new JSONObject();
Expand Down

0 comments on commit f7cfa0a

Please sign in to comment.