-
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.
Browse files
Browse the repository at this point in the history
…-of-super-class-is-not-overwritten [#262] fix overwriting Browser configuration of super class
- Loading branch information
Showing
7 changed files
with
141 additions
and
1 deletion.
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
14 changes: 14 additions & 0 deletions
14
.../xceptance/neodymium/junit4/testclasses/browser/inheritance/BrowserOverwrittingChild.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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package com.xceptance.neodymium.junit4.testclasses.browser.inheritance; | ||
|
||
import org.junit.Test; | ||
|
||
import com.xceptance.neodymium.common.browser.Browser; | ||
|
||
@Browser("Chrome_1024x768") | ||
public class BrowserOverwrittingChild extends BrowserParent | ||
{ | ||
@Test | ||
public void test() | ||
{ | ||
} | ||
} |
14 changes: 14 additions & 0 deletions
14
...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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package com.xceptance.neodymium.junit4.testclasses.browser.inheritance; | ||
|
||
import org.junit.runner.RunWith; | ||
|
||
import com.xceptance.neodymium.common.browser.Browser; | ||
import com.xceptance.neodymium.junit4.NeodymiumRunner; | ||
|
||
@Browser("Chrome_1024x768") | ||
@Browser("Chrome_1500x1000") | ||
@RunWith(NeodymiumRunner.class) | ||
public abstract class BrowserParent | ||
{ | ||
|
||
} |
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
13 changes: 13 additions & 0 deletions
13
.../xceptance/neodymium/junit5/testclasses/browser/inheritance/BrowserOverwrittingChild.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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package com.xceptance.neodymium.junit5.testclasses.browser.inheritance; | ||
|
||
import com.xceptance.neodymium.common.browser.Browser; | ||
import com.xceptance.neodymium.junit5.NeodymiumTest; | ||
|
||
@Browser("Chrome_1024x768") | ||
public class BrowserOverwrittingChild extends BrowserParent | ||
{ | ||
@NeodymiumTest | ||
public void test() | ||
{ | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
...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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package com.xceptance.neodymium.junit5.testclasses.browser.inheritance; | ||
|
||
import com.xceptance.neodymium.common.browser.Browser; | ||
|
||
@Browser("Chrome_1024x768") | ||
@Browser("Chrome_1500x1000") | ||
public abstract class BrowserParent | ||
{ | ||
|
||
} |
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