Skip to content

Commit

Permalink
CHE-4636: Remove usecase for unexisted feature (#7410)
Browse files Browse the repository at this point in the history
Signed-off-by: Anatoliy Bazko <abazko@redhat.com>
  • Loading branch information
tolusha authored Nov 16, 2017
1 parent a4b0a78 commit 4045dc4
Showing 1 changed file with 1 addition and 30 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -121,35 +121,6 @@ public void stopDebug() {
}

@Test
public void shouldDebugJreClass() {
// when
editor.setInactiveBreakpoint(19);
menu.runCommandByXpath(
TestMenuCommandsConstants.Run.RUN_MENU,
TestMenuCommandsConstants.Run.DEBUG,
debugConfig.getXpathToІRunDebugCommand(PROJECT));

notifications.waitExpectedMessageOnProgressPanelAndClosed("Remote debugger connected");
editor.waitActiveBreakpoint(19);
debugPanel.clickOnButton(DebugPanel.DebuggerActionButtons.STEP_INTO);

// then
editor.waitActiveTabFileName("Logger"); // there should be class "Logger" opened
debugPanel.waitDebugHighlightedText(
" "); // we can't rely on concrete code of external library which can be changed in
// future
debugPanel.waitTextInVariablesPanel(
"=\"Info from java logger\""); // there should be at least parameter with value "Info from
// java logger"

// when
debugPanel.clickOnButton(DebugPanel.DebuggerActionButtons.RESUME_BTN_ID);

// then
editor.waitActiveTabFileName("SimpleLogger");
}

@Test(priority = 1)
public void shouldDebugMavenArtifactClassWithSources() {
// when
editor.setInactiveBreakpoint(23);
Expand Down Expand Up @@ -189,7 +160,7 @@ public void shouldDebugMavenArtifactClassWithSources() {
" org.apache.log4j.Logger log4jLogger = org.apache.log4j.Logger.getLogger(SimpleLogger.class);");
}

@Test(priority = 2)
@Test(priority = 1)
public void shouldHandleDebugOfMavenArtifactWithoutSources() {
// when
editor.setInactiveBreakpoint(27);
Expand Down

0 comments on commit 4045dc4

Please sign in to comment.