Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions junit-4/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
</dependencies>
<configuration>
<includes>
<include>com/browserstack/SampleTest.java</include>
<include>com/browserstack/BStackSampleTest.java</include>
</includes>
<argLine>
-javaagent:${com.browserstack:browserstack-java-sdk:jar}
Expand All @@ -95,7 +95,7 @@
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<includes>
<include>com/browserstack/SampleTest.java</include>
<include>com/browserstack/BStackSampleTest.java</include>
</includes>
<argLine>
-javaagent:${com.browserstack:browserstack-java-sdk:jar}
Expand All @@ -115,7 +115,7 @@
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<includes>
<include>com/browserstack/LocalTest.java</include>
<include>com/browserstack/BStackLocalTest.java</include>
</includes>
<argLine>
-javaagent:${com.browserstack:browserstack-java-sdk:jar}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

import static org.junit.Assert.assertTrue;

public class LocalTest extends BrowserStackJUnitTest {
public class BStackLocalTest extends BrowserStackJUnitTest {

@Test
public void test() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

import static org.junit.Assert.assertTrue;

public class SampleTest extends BrowserStackJUnitTest {
public class BStackSampleTest extends BrowserStackJUnitTest {

@Test
public void test() {
Expand Down
4 changes: 2 additions & 2 deletions junit-5/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
<selenium-java>4.1.4</selenium-java>
<maven-surefire-plugin>3.0.0-M5</maven-surefire-plugin>
<httpclient>4.5.13</httpclient>
<tests.single>**/tests.SingleTest.java</tests.single>
<tests.local>**/tests.LocalTest.java</tests.local>
<tests.single>**/tests.BStackSampleTest.java</tests.single>
<tests.local>**/tests.BStackLocalTest.java</tests.local>
</properties>
<dependencies>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import runners.BstackRunner;


public class LocalTest extends BstackRunner {
public class BStackLocalTest extends BstackRunner {

@Test
void localTest() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

import java.time.Duration;

public class SingleTest extends BstackRunner {
public class BStackSampleTest extends BstackRunner {

@Test
void singleTest() {
Expand Down