Skip to content

Commit 68bcca3

Browse files
committed
ToString
1 parent dc0e2f3 commit 68bcca3

File tree

1 file changed

+9
-0
lines changed
  • tmc-langs-framework/src/main/java/fi/helsinki/cs/tmc/langs/domain

1 file changed

+9
-0
lines changed

tmc-langs-framework/src/main/java/fi/helsinki/cs/tmc/langs/domain/RunResult.java

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,4 +75,13 @@ public RunResult(
7575
this.testResults = testResults;
7676
this.logs = logs;
7777
}
78+
79+
@Override
80+
public String toString() {
81+
return "RunResult{"
82+
+ "status=" + status
83+
+ ", testResults=" + testResults
84+
+ ", logKeys=" + logs.keySet()
85+
+ '}';
86+
}
7887
}

0 commit comments

Comments
 (0)