We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8143dad commit 812b1e8Copy full SHA for 812b1e8
maven/src/functionalTest/java/org/hibernate/tool/maven/ExamplesTestIT.java
@@ -40,11 +40,12 @@ public void test5MinuteTutorial() throws Exception {
40
new MavenCli().doMain(
41
new String[]{"generate-sources"},
42
projectFolder.getAbsolutePath(),
43
- null,
44
- null);
+ System.out,
+ System.err);
45
assertTrue(generatedPersonFile.exists());
46
String personFileContents = new String(Files.readAllBytes(generatedPersonFile.toPath()));
47
assertTrue(personFileContents.contains("public class Person"));
48
+ fail();
49
}
50
51
private File prepareProjectFolder(String projectName) throws Exception {
0 commit comments