Added custom error level to Result object.

This commit is contained in:
Marija Stojanovic 2025-10-22 12:59:35 +00:00 committed by Renzo Kottmann
parent 3c6b4d2e2e
commit 9ed443ffdb
15 changed files with 211 additions and 51 deletions

View file

@ -164,7 +164,7 @@ public class CommandlineApplicationTest {
final String[] args = { "-s", Paths.get(Simple.SCENARIOS).toString(), "-o", this.output.toString(), "-r",
Paths.get(Simple.REPOSITORY_URI).toString(), Paths.get(Simple.EXAMPLES).toString() };
CommandLineApplication.mainProgram(args);
assertThat(CommandLine.getErrorOutput()).contains("Processing 8 object(s) completed");
assertThat(CommandLine.getErrorOutput()).contains("Processing 9 object(s) completed");
}
@Test