-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Craig Mc Carthy
committed
Aug 30, 2024
1 parent
3c3abcf
commit acce0b0
Showing
9 changed files
with
55 additions
and
36 deletions.
There are no files selected for viewing
14 changes: 0 additions & 14 deletions
14
karate-basic/src/test/java/cmccarthyirl/basic/BasicKarateTest.java
This file was deleted.
Oops, something went wrong.
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: 0 additions & 14 deletions
14
karate-dynamic/src/test/java/cmccarthyirl/dynamic/DynamicKarateTest.java
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xmlns="http://maven.apache.org/POM/4.0.0" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<parent> | ||
<artifactId>spring-karate-test-harness</artifactId> | ||
<groupId>com.cmccarthy.karate</groupId> | ||
<version>1.0-SNAPSHOT</version> | ||
</parent> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<artifactId>suites</artifactId> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>com.cmccarthy.karate</groupId> | ||
<artifactId>common</artifactId> | ||
<version>1.0-SNAPSHOT</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.cmccarthy.karate</groupId> | ||
<artifactId>local-server</artifactId> | ||
<version>1.0-SNAPSHOT</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.cmccarthy.karate</groupId> | ||
<artifactId>karate-basic</artifactId> | ||
<version>1.0-SNAPSHOT</version> | ||
<scope>test</scope> | ||
<type>test-jar</type> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.cmccarthy.karate</groupId> | ||
<artifactId>karate-dynamic</artifactId> | ||
<version>1.0-SNAPSHOT</version> | ||
<type>test-jar</type> | ||
</dependency> | ||
</dependencies> | ||
</project> |
11 changes: 11 additions & 0 deletions
11
suites/src/test/java/cmccarthyirl/suites/JUnitSuiteTest.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,11 @@ | ||
package cmccarthyirl.suites; | ||
|
||
import cmccarthyirl.basic.BasicParallelKarateTest; | ||
import cmccarthyirl.basic.config.AbstractTestDefinition; | ||
import cmccarthyirl.dynamic.DynamicParallelKarateTest; | ||
import org.junit.platform.suite.api.*; | ||
|
||
@Suite | ||
@SelectClasses({DynamicParallelKarateTest.class, BasicParallelKarateTest.class}) | ||
public class JUnitSuiteTest extends AbstractTestDefinition { | ||
} |
Empty file.
Empty file.