Skip to content

Commit a59a34c

Browse files
committed
working on runner for generated tests
1 parent 37027f9 commit a59a34c

2 files changed

Lines changed: 87 additions & 0 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -291,3 +291,4 @@ jdk_17_maven/em/embedded/rest/familie-ba-sak/target/
291291
/jdk_8_maven/cs/rest/original/session-service/target/
292292
/jdk_8_maven/em/embedded/rest/session-service/target/
293293
/jdk_8_maven/em/external/rest/session-service/target/
294+
/runner/.idea

runner/pom.xml

Lines changed: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
5+
<groupId>org.evomaster</groupId>
6+
<artifactId>runner</artifactId>
7+
8+
<version>3.1.1-SNAPSHOT</version>
9+
10+
<properties>
11+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
12+
<evomaster-version>3.1.1-SNAPSHOT</evomaster-version>
13+
<lib-folder>${project.basedir}</lib-folder>
14+
</properties>
15+
16+
17+
<dependencies>
18+
<dependency>
19+
<groupId>org.evomaster</groupId>
20+
<artifactId>evomaster-benchmark-em-external-rest-genome-nexus</artifactId>
21+
<version>${evomaster-version}</version>
22+
<scope>system</scope>
23+
<systemPath>${lib-folder}/genome-nexus-evomaster-runner.jar</systemPath>
24+
</dependency>
25+
<dependency>
26+
<groupId>org.evomaster</groupId>
27+
<artifactId>evomaster-benchmark-em-external-rest-gestaohospital</artifactId>
28+
<version>${evomaster-version}</version>
29+
<scope>system</scope>
30+
<systemPath>${lib-folder}/gestaohospital-rest-evomaster-runner.jar</systemPath>
31+
</dependency>
32+
<dependency>
33+
<groupId>org.evomaster</groupId>
34+
<artifactId>evomaster-benchmark-em-external-rest-session-service</artifactId>
35+
<version>${evomaster-version}</version>
36+
<scope>system</scope>
37+
<systemPath>${lib-folder}/session-service-evomaster-runner.jar</systemPath>
38+
</dependency>
39+
<dependency>
40+
<groupId>org.evomaster</groupId>
41+
<artifactId>evomaster-benchmark-em-external-rest-ocvn</artifactId>
42+
<version>${evomaster-version}</version>
43+
<scope>system</scope>
44+
<systemPath>${lib-folder}/ocvn-rest-evomaster-runner.jar</systemPath>
45+
</dependency>
46+
<dependency>
47+
<groupId>org.evomaster</groupId>
48+
<artifactId>evomaster-benchmark-em-external-rest-bibliothek</artifactId>
49+
<version>${evomaster-version}</version>
50+
<scope>system</scope>
51+
<systemPath>${lib-folder}/bibliothek-evomaster-runner.jar</systemPath>
52+
</dependency>
53+
<dependency>
54+
<groupId>org.evomaster</groupId>
55+
<artifactId>evomaster-benchmark-em-external-rest-reservations-api</artifactId>
56+
<version>${evomaster-version}</version>
57+
<scope>system</scope>
58+
<systemPath>${lib-folder}/reservations-api-evomaster-runner.jar</systemPath>
59+
</dependency>
60+
</dependencies>
61+
62+
<build>
63+
<plugins>
64+
<plugin>
65+
<groupId>org.apache.maven.plugins</groupId>
66+
<artifactId>maven-compiler-plugin</artifactId>
67+
<configuration>
68+
<source>1.8</source>
69+
<target>1.8</target>
70+
<encoding>${project.build.sourceEncoding}</encoding>
71+
<compileSourceRoots>
72+
<compileSourceRoot>${project.basedir}/tests/genome-nexus</compileSourceRoot>
73+
<compileSourceRoot>${project.basedir}/tests/gestaohospital-rest</compileSourceRoot>
74+
<compileSourceRoot>${project.basedir}/tests/session-service</compileSourceRoot>
75+
<compileSourceRoot>${project.basedir}/tests/bibliothek</compileSourceRoot>
76+
<compileSourceRoot>${project.basedir}/tests/ocvn-rest</compileSourceRoot>
77+
<compileSourceRoot>${project.basedir}/tests/reservations-api</compileSourceRoot>
78+
</compileSourceRoots>
79+
</configuration>
80+
</plugin>
81+
</plugins>
82+
</build>
83+
84+
85+
86+
</project>

0 commit comments

Comments
 (0)