Skip to content

Commit

Permalink
More output
Browse files Browse the repository at this point in the history
Signed-off-by: Oleksii Korniienko <[email protected]>
  • Loading branch information
olkornii committed Oct 9, 2024
1 parent 15f8167 commit b18062d
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions src/it/java/org/jboss/tools/intellij/quarkus/tests/BasicTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,12 @@ public void finishTestRun() {
System.out.println("++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++");
System.out.println("closeProject_output:");
System.out.println(Files.exists(Paths.get(CreateCloseUtils.PROJECT_LOCATION)));
System.out.println(Files.exists(Paths.get(CreateCloseUtils.PROJECT_LOCATION + File.separator + "code-with-quarkus")));
System.out.println(Files.exists(Paths.get(CreateCloseUtils.PROJECT_LOCATION + File.separator + "code-with-quarkus-gradle")));
System.out.println(Files.exists(Paths.get(CreateCloseUtils.PROJECT_LOCATION + File.separator + "code-with-quarkus-maven")));
System.out.println(Files.exists(Paths.get(System.getProperty("user.home") + File.separator + "IdeaProjects" + File.separator + "code-with-quarkus")));
System.out.println(Files.exists(Paths.get(System.getProperty("user.home") + File.separator + "IdeaProjects" + File.separator + "code-with-quarkus-gradle")));
System.out.println(Files.exists(Paths.get(System.getProperty("user.home") + File.separator + "IdeaProjects" + File.separator + "code-with-quarkus-maven")));
ScreenshotUtils.takeScreenshot(remoteRobot, "closeProjectScreenshot");

try {
Expand All @@ -74,6 +80,12 @@ public void finishTestRun() {
}
System.out.println("clearPROJECT_LOCATION_output:");
System.out.println(Files.exists(Paths.get(CreateCloseUtils.PROJECT_LOCATION)));
System.out.println(Files.exists(Paths.get(CreateCloseUtils.PROJECT_LOCATION + File.separator + "code-with-quarkus")));
System.out.println(Files.exists(Paths.get(CreateCloseUtils.PROJECT_LOCATION + File.separator + "code-with-quarkus-gradle")));
System.out.println(Files.exists(Paths.get(CreateCloseUtils.PROJECT_LOCATION + File.separator + "code-with-quarkus-maven")));
System.out.println(Files.exists(Paths.get(System.getProperty("user.home") + File.separator + "IdeaProjects" + File.separator + "code-with-quarkus")));
System.out.println(Files.exists(Paths.get(System.getProperty("user.home") + File.separator + "IdeaProjects" + File.separator + "code-with-quarkus-gradle")));
System.out.println(Files.exists(Paths.get(System.getProperty("user.home") + File.separator + "IdeaProjects" + File.separator + "code-with-quarkus-maven")));
ScreenshotUtils.takeScreenshot(remoteRobot, "clearPROJECT_LOCATIONScreenshot");

try {
Expand All @@ -84,6 +96,12 @@ public void finishTestRun() {
}
System.out.println("clearIdeaProjects_output:");
System.out.println(Files.exists(Paths.get(System.getProperty("user.home") + File.separator + "IdeaProjects")));
System.out.println(Files.exists(Paths.get(CreateCloseUtils.PROJECT_LOCATION + File.separator + "code-with-quarkus")));
System.out.println(Files.exists(Paths.get(CreateCloseUtils.PROJECT_LOCATION + File.separator + "code-with-quarkus-gradle")));
System.out.println(Files.exists(Paths.get(CreateCloseUtils.PROJECT_LOCATION + File.separator + "code-with-quarkus-maven")));
System.out.println(Files.exists(Paths.get(System.getProperty("user.home") + File.separator + "IdeaProjects" + File.separator + "code-with-quarkus")));
System.out.println(Files.exists(Paths.get(System.getProperty("user.home") + File.separator + "IdeaProjects" + File.separator + "code-with-quarkus-gradle")));
System.out.println(Files.exists(Paths.get(System.getProperty("user.home") + File.separator + "IdeaProjects" + File.separator + "code-with-quarkus-maven")));
ScreenshotUtils.takeScreenshot(remoteRobot, "clearIdeaProjectsScreenshot");

try {
Expand All @@ -96,6 +114,12 @@ public void finishTestRun() {
}
System.out.println("clearWorkspace_output:");
System.out.println(Files.exists(Paths.get(CreateCloseUtils.PROJECT_LOCATION)));
System.out.println(Files.exists(Paths.get(CreateCloseUtils.PROJECT_LOCATION + File.separator + "code-with-quarkus")));
System.out.println(Files.exists(Paths.get(CreateCloseUtils.PROJECT_LOCATION + File.separator + "code-with-quarkus-gradle")));
System.out.println(Files.exists(Paths.get(CreateCloseUtils.PROJECT_LOCATION + File.separator + "code-with-quarkus-maven")));
System.out.println(Files.exists(Paths.get(System.getProperty("user.home") + File.separator + "IdeaProjects" + File.separator + "code-with-quarkus")));
System.out.println(Files.exists(Paths.get(System.getProperty("user.home") + File.separator + "IdeaProjects" + File.separator + "code-with-quarkus-gradle")));
System.out.println(Files.exists(Paths.get(System.getProperty("user.home") + File.separator + "IdeaProjects" + File.separator + "code-with-quarkus-maven")));
ScreenshotUtils.takeScreenshot(remoteRobot, "clearWorkspaceScreenshot");
System.out.println("++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++");
}
Expand Down

0 comments on commit b18062d

Please sign in to comment.