Add some integration tests for the CLI’s quiet mode

See gh-6918
This commit is contained in:
Andy Wilkinson
2016-09-18 10:56:08 +01:00
parent 0a9bcd9893
commit 472117299e
2 changed files with 76 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
package org.test
@Component
class Example implements CommandLineRunner {
void run(String... args) {
print "Ssshh"
}
}