-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Merge branch '322-bug-browser-is-not-started-for-after-method…
…-if-its-declared-in-different-class-than-the-test-itself' into #330-improvement-stabilize-unit-tests" This reverts commit 19c6a57, reversing changes made to 99666f4.
- Loading branch information
1 parent
5cca259
commit fa68a51
Showing
7 changed files
with
8 additions
and
97 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
33 changes: 0 additions & 33 deletions
33
...java/com/xceptance/neodymium/junit4/testclasses/browser/inheritance/BrowserChildTest.java
This file was deleted.
Oops, something went wrong.
11 changes: 1 addition & 10 deletions
11
...st/java/com/xceptance/neodymium/junit4/testclasses/browser/inheritance/BrowserParent.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,14 @@ | ||
package com.xceptance.neodymium.junit4.testclasses.browser.inheritance; | ||
|
||
import org.junit.Assert; | ||
import org.junit.runner.RunWith; | ||
|
||
import com.xceptance.neodymium.common.browser.Browser; | ||
import com.xceptance.neodymium.junit4.NeodymiumRunner; | ||
import com.xceptance.neodymium.junit5.NeodymiumTest; | ||
import com.xceptance.neodymium.junit5.tests.NeodymiumWebDriverTest; | ||
import com.xceptance.neodymium.util.Neodymium; | ||
|
||
@Browser("Chrome_1024x768") | ||
@Browser("Chrome_1500x1000") | ||
@RunWith(NeodymiumRunner.class) | ||
public abstract class BrowserParent | ||
{ | ||
@NeodymiumTest | ||
public void testParent() | ||
{ | ||
Assert.assertNotNull(Neodymium.getDriver()); | ||
NeodymiumWebDriverTest.assertWebDriverAlive(Neodymium.getDriver()); | ||
} | ||
|
||
} |
33 changes: 0 additions & 33 deletions
33
...java/com/xceptance/neodymium/junit5/testclasses/browser/inheritance/BrowserChildTest.java
This file was deleted.
Oops, something went wrong.
12 changes: 1 addition & 11 deletions
12
...st/java/com/xceptance/neodymium/junit5/testclasses/browser/inheritance/BrowserParent.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,10 @@ | ||
package com.xceptance.neodymium.junit5.testclasses.browser.inheritance; | ||
|
||
import org.junit.Assert; | ||
|
||
import com.xceptance.neodymium.common.browser.Browser; | ||
import com.xceptance.neodymium.junit5.NeodymiumTest; | ||
import com.xceptance.neodymium.junit5.tests.NeodymiumWebDriverTest; | ||
import com.xceptance.neodymium.util.Neodymium; | ||
|
||
@Browser("Chrome_1024x768") | ||
@Browser("Chrome_1500x1000") | ||
public abstract class BrowserParent | ||
{ | ||
@NeodymiumTest | ||
public void testParent() | ||
{ | ||
Assert.assertNotNull(Neodymium.getDriver()); | ||
NeodymiumWebDriverTest.assertWebDriverAlive(Neodymium.getDriver()); | ||
} | ||
|
||
} |