Skip to content

Commit abbb783

Browse files
committed
refactor(test): remove unused TestResult class
1 parent 7362729 commit abbb783

File tree

1 file changed

+0
-20
lines changed

1 file changed

+0
-20
lines changed

src/test/java/MavenTest.java

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -176,24 +176,4 @@ Collection<DynamicTest> runMavenExecTests() {
176176
.collect(Collectors.toList());
177177
}
178178

179-
private static class TestResult {
180-
String problemName;
181-
boolean success;
182-
String output;
183-
String errorOutput;
184-
Throwable exception;
185-
186-
public TestResult(String problemName, boolean success, String output, String errorOutput, Throwable exception) {
187-
this.problemName = problemName;
188-
this.success = success;
189-
this.output = output;
190-
this.errorOutput = errorOutput;
191-
this.exception = exception;
192-
}
193-
194-
@Override
195-
public String toString() {
196-
return problemName;
197-
}
198-
}
199179
}

0 commit comments

Comments
 (0)