We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2692090 commit 4fb9b29Copy full SHA for 4fb9b29
1 file changed
src/test/java/org/utplsql/maven/plugin/UtPlsqlMojoTest.java
@@ -115,4 +115,18 @@ public void skipUtplsqlTests() throws MojoExecutionException {
115
assertTrue(standardOutput.contains("utPLSQLTests are skipped."));
116
}
117
118
+ @Test
119
+ public void defaultReport() throws MojoExecutionException {
120
+ utPLSQLMojo.execute();
121
+
122
+ final ByteArrayOutputStream console = new ByteArrayOutputStream();
123
+ System.setOut(new PrintStream(console));
124
125
126
127
+ String standardOutput = console.toString();
128
129
+ assertTrue(standardOutput.contains("Finished"));
130
+ }
131
132
0 commit comments