Compare commits
6 commits
203aa83c61
...
d208038f2d
Author | SHA1 | Date | |
---|---|---|---|
d208038f2d | |||
ef429547d5 | |||
ad06348567 | |||
25c9aa83c3 | |||
1a27995124 | |||
caf67cf115 |
17 changed files with 100 additions and 83 deletions
4
.idea/libraries/bld.xml
generated
4
.idea/libraries/bld.xml
generated
|
@ -2,12 +2,12 @@
|
|||
<library name="bld">
|
||||
<CLASSES>
|
||||
<root url="file://$PROJECT_DIR$/lib/bld" />
|
||||
<root url="jar://$USER_HOME$/.bld/dist/bld-1.7.5.jar!/" />
|
||||
<root url="jar://$USER_HOME$/.bld/dist/bld-1.9.0.jar!/" />
|
||||
</CLASSES>
|
||||
<JAVADOC />
|
||||
<SOURCES>
|
||||
<root url="file://$PROJECT_DIR$/lib/bld" />
|
||||
<root url="jar://$USER_HOME$/.bld/dist/bld-1.7.5-sources.jar!/" />
|
||||
<root url="jar://$USER_HOME$/.bld/dist/bld-1.9.0-sources.jar!/" />
|
||||
</SOURCES>
|
||||
<excluded>
|
||||
<root url="jar://$PROJECT_DIR$/lib/bld/bld-wrapper.jar!/" />
|
||||
|
|
9
.vscode/launch.json
vendored
9
.vscode/launch.json
vendored
|
@ -5,7 +5,14 @@
|
|||
"type": "java",
|
||||
"name": "Run Tests",
|
||||
"request": "launch",
|
||||
"mainClass": "rife.bld.extension.PitestExtensionTest"
|
||||
"mainClass": "org.junit.platform.console.ConsoleLauncher",
|
||||
"args": [
|
||||
"--details=verbose",
|
||||
"--scan-classpath",
|
||||
"--disable-banner",
|
||||
"--disable-ansi-colors",
|
||||
"--exclude-engine=junit-platform-suite",
|
||||
"--exclude-engine=junit-vintage"]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
10
.vscode/settings.json
vendored
10
.vscode/settings.json
vendored
|
@ -3,13 +3,13 @@
|
|||
"src/main/java",
|
||||
"src/main/resources",
|
||||
"src/test/java",
|
||||
"src/bld/java"
|
||||
"src/test/resources",
|
||||
"src/bld/java",
|
||||
"src/bld/resources"
|
||||
],
|
||||
"java.configuration.updateBuildConfiguration": "automatic",
|
||||
"java.project.referencedLibraries": [
|
||||
"${HOME}/.bld/dist/bld-1.7.5.jar",
|
||||
"lib/compile/*.jar",
|
||||
"lib/runtime/*.jar",
|
||||
"lib/test/*.jar"
|
||||
"${HOME}/.bld/dist/bld-1.9.0.jar",
|
||||
"lib/**/*.jar"
|
||||
]
|
||||
}
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
[](https://opensource.org/licenses/Apache-2.0)
|
||||
[](https://www.oracle.com/java/technologies/javase/jdk17-archive-downloads.html)
|
||||
[](https://rife2.com/bld)
|
||||
[](https://rife2.com/bld)
|
||||
[](https://repo.rife2.com/#/releases/com/uwyn/rife2/bld-pitest)
|
||||
[](https://repo.rife2.com/#/snapshots/com/uwyn/rife2/bld-pitest)
|
||||
[](https://github.com/rife2/bld-pitest/actions/workflows/bld.yml)
|
||||
|
@ -40,8 +40,8 @@ Don't forget to add the Pitest `test` dependencies to your build file, as they a
|
|||
```java
|
||||
repositories = List.of(MAVEN_CENTRAL);
|
||||
scope(test)
|
||||
.include(dependency("org.pitest", "pitest", version(1, 15, 6)))
|
||||
.include(dependency("org.pitest", "pitest-command-line", version(1, 15, 6)))
|
||||
.include(dependency("org.pitest", "pitest", version(1, 15, 8)))
|
||||
.include(dependency("org.pitest", "pitest-command-line", version(1, 15, 8)))
|
||||
.include(dependency("org.pitest", "pitest-junit5-plugin", version(1, 2, 1)))
|
||||
.include(dependency("org.pitest", "pitest-testng-plugin", version(1, 0, 0)));
|
||||
```
|
||||
|
|
4
examples/.idea/libraries/bld.xml
generated
4
examples/.idea/libraries/bld.xml
generated
|
@ -2,12 +2,12 @@
|
|||
<library name="bld">
|
||||
<CLASSES>
|
||||
<root url="file://$PROJECT_DIR$/lib/bld" />
|
||||
<root url="jar://$USER_HOME$/.bld/dist/bld-1.7.5.jar!/" />
|
||||
<root url="jar://$USER_HOME$/.bld/dist/bld-1.9.0.jar!/" />
|
||||
</CLASSES>
|
||||
<JAVADOC />
|
||||
<SOURCES>
|
||||
<root url="file://$PROJECT_DIR$/lib/bld" />
|
||||
<root url="jar://$USER_HOME$/.bld/dist/bld-1.7.5-sources.jar!/" />
|
||||
<root url="jar://$USER_HOME$/.bld/dist/bld-1.9.0-sources.jar!/" />
|
||||
</SOURCES>
|
||||
<excluded>
|
||||
<root url="jar://$PROJECT_DIR$/lib/bld/bld-wrapper.jar!/" />
|
||||
|
|
9
examples/.vscode/launch.json
vendored
9
examples/.vscode/launch.json
vendored
|
@ -5,7 +5,14 @@
|
|||
"type": "java",
|
||||
"name": "Run Tests",
|
||||
"request": "launch",
|
||||
"mainClass": "com.example.ExamplesTest"
|
||||
"mainClass": "org.junit.platform.console.ConsoleLauncher",
|
||||
"args": [
|
||||
"--details=verbose",
|
||||
"--scan-classpath",
|
||||
"--disable-banner",
|
||||
"--disable-ansi-colors",
|
||||
"--exclude-engine=junit-platform-suite",
|
||||
"--exclude-engine=junit-vintage"]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
10
examples/.vscode/settings.json
vendored
10
examples/.vscode/settings.json
vendored
|
@ -3,13 +3,13 @@
|
|||
"src/main/java",
|
||||
"src/main/resources",
|
||||
"src/test/java",
|
||||
"src/bld/java"
|
||||
"src/test/resources",
|
||||
"src/bld/java",
|
||||
"src/bld/resources"
|
||||
],
|
||||
"java.configuration.updateBuildConfiguration": "automatic",
|
||||
"java.project.referencedLibraries": [
|
||||
"${HOME}/.bld/dist/bld-1.7.5.jar",
|
||||
"lib/compile/*.jar",
|
||||
"lib/runtime/*.jar",
|
||||
"lib/test/*.jar"
|
||||
"${HOME}/.bld/dist/bld-1.9.0.jar",
|
||||
"lib/**/*.jar"
|
||||
]
|
||||
}
|
||||
|
|
Binary file not shown.
|
@ -1,7 +1,7 @@
|
|||
bld.downloadExtensionJavadoc=false
|
||||
bld.downloadExtensionSources=true
|
||||
bld.extensions=com.uwyn.rife2:bld-pitest:0.9.1
|
||||
bld.extensions=com.uwyn.rife2:bld-pitest:0.9.5
|
||||
bld.repositories=MAVEN_CENTRAL,RIFE2_RELEASES,MAVEN_LOCAL,RIFE2_SNAPSHOTS
|
||||
bld.downloadLocation=
|
||||
bld.sourceDirectories=
|
||||
bld.version=1.7.5
|
||||
bld.version=1.9.0
|
||||
|
|
|
@ -15,12 +15,12 @@
|
|||
|
||||
<tr>
|
||||
<td class='na'>
|
||||
<a name='org.pitest.mutationtest.report.html.SourceFile@2d2ffcb7_1'/>
|
||||
<a name='org.pitest.mutationtest.report.html.SourceFile@77eca502_1'/>
|
||||
1
|
||||
</td>
|
||||
<td class=''>
|
||||
<span class='pop'>
|
||||
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@2d2ffcb7_1'></a>
|
||||
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@77eca502_1'></a>
|
||||
<span>
|
||||
</span>
|
||||
</span>
|
||||
|
@ -30,12 +30,12 @@
|
|||
|
||||
<tr>
|
||||
<td class='na'>
|
||||
<a name='org.pitest.mutationtest.report.html.SourceFile@2d2ffcb7_2'/>
|
||||
<a name='org.pitest.mutationtest.report.html.SourceFile@77eca502_2'/>
|
||||
2
|
||||
</td>
|
||||
<td class=''>
|
||||
<span class='pop'>
|
||||
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@2d2ffcb7_2'></a>
|
||||
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@77eca502_2'></a>
|
||||
<span>
|
||||
</span>
|
||||
</span>
|
||||
|
@ -45,12 +45,12 @@
|
|||
|
||||
<tr>
|
||||
<td class='covered'>
|
||||
<a name='org.pitest.mutationtest.report.html.SourceFile@2d2ffcb7_3'/>
|
||||
<a name='org.pitest.mutationtest.report.html.SourceFile@77eca502_3'/>
|
||||
3
|
||||
</td>
|
||||
<td class=''>
|
||||
<span class='pop'>
|
||||
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@2d2ffcb7_3'></a>
|
||||
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@77eca502_3'></a>
|
||||
<span>
|
||||
</span>
|
||||
</span>
|
||||
|
@ -60,12 +60,12 @@
|
|||
|
||||
<tr>
|
||||
<td class='na'>
|
||||
<a name='org.pitest.mutationtest.report.html.SourceFile@2d2ffcb7_4'/>
|
||||
<a name='org.pitest.mutationtest.report.html.SourceFile@77eca502_4'/>
|
||||
4
|
||||
</td>
|
||||
<td class=''>
|
||||
<span class='pop'>
|
||||
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@2d2ffcb7_4'></a>
|
||||
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@77eca502_4'></a>
|
||||
<span>
|
||||
</span>
|
||||
</span>
|
||||
|
@ -75,12 +75,12 @@
|
|||
|
||||
<tr>
|
||||
<td class='covered'>
|
||||
<a name='org.pitest.mutationtest.report.html.SourceFile@2d2ffcb7_5'/>
|
||||
<a name='org.pitest.mutationtest.report.html.SourceFile@77eca502_5'/>
|
||||
5
|
||||
</td>
|
||||
<td class='killed'>
|
||||
<span class='pop'>
|
||||
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@2d2ffcb7_5'>1</a>
|
||||
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@77eca502_5'>1</a>
|
||||
<span>
|
||||
1. getMessage : replaced return value with "" for com/example/ExamplesLib::getMessage → KILLED<br/>
|
||||
|
||||
|
@ -92,12 +92,12 @@
|
|||
|
||||
<tr>
|
||||
<td class='na'>
|
||||
<a name='org.pitest.mutationtest.report.html.SourceFile@2d2ffcb7_6'/>
|
||||
<a name='org.pitest.mutationtest.report.html.SourceFile@77eca502_6'/>
|
||||
6
|
||||
</td>
|
||||
<td class=''>
|
||||
<span class='pop'>
|
||||
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@2d2ffcb7_6'></a>
|
||||
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@77eca502_6'></a>
|
||||
<span>
|
||||
</span>
|
||||
</span>
|
||||
|
@ -107,12 +107,12 @@
|
|||
|
||||
<tr>
|
||||
<td class='na'>
|
||||
<a name='org.pitest.mutationtest.report.html.SourceFile@2d2ffcb7_7'/>
|
||||
<a name='org.pitest.mutationtest.report.html.SourceFile@77eca502_7'/>
|
||||
7
|
||||
</td>
|
||||
<td class=''>
|
||||
<span class='pop'>
|
||||
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@2d2ffcb7_7'></a>
|
||||
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@77eca502_7'></a>
|
||||
<span>
|
||||
</span>
|
||||
</span>
|
||||
|
@ -124,11 +124,11 @@
|
|||
<tr><td></td><td></td><td><h2>Mutations</h2></td></tr>
|
||||
|
||||
<tr>
|
||||
<td><a href='#org.pitest.mutationtest.report.html.SourceFile@2d2ffcb7_5'>5</a></td>
|
||||
<td><a href='#org.pitest.mutationtest.report.html.SourceFile@77eca502_5'>5</a></td>
|
||||
<td></td>
|
||||
<td>
|
||||
|
||||
<a name='grouporg.pitest.mutationtest.report.html.SourceFile@2d2ffcb7_5'/>
|
||||
<a name='grouporg.pitest.mutationtest.report.html.SourceFile@77eca502_5'/>
|
||||
|
||||
<p class='KILLED'><span class='pop'>1.<span><b>1</b><br/><b>Location : </b>getMessage<br/><b>Killed by : </b>com.example.ExamplesTest.[engine:junit-jupiter]/[class:com.example.ExamplesTest]/[method:verifyHello()]</span></span> replaced return value with "" for com/example/ExamplesLib::getMessage → KILLED</p>
|
||||
</td>
|
||||
|
@ -155,12 +155,12 @@
|
|||
|
||||
<h2>Tests examined</h2>
|
||||
<ul>
|
||||
<li>com.example.ExamplesTest.[engine:junit-jupiter]/[class:com.example.ExamplesTest]/[method:verifyHello()] (9 ms)</li>
|
||||
<li>com.example.ExamplesTest.[engine:junit-jupiter]/[class:com.example.ExamplesTest]/[method:verifyHello()] (8 ms)</li>
|
||||
</ul>
|
||||
|
||||
<br/>
|
||||
|
||||
Report generated by <a href='https://pitest.org'>PIT</a> 1.15.6
|
||||
Report generated by <a href='https://pitest.org'>PIT</a> 1.15.8
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -15,12 +15,12 @@
|
|||
|
||||
<tr>
|
||||
<td class='na'>
|
||||
<a name='org.pitest.mutationtest.report.html.SourceFile@4e3958e7_1'/>
|
||||
<a name='org.pitest.mutationtest.report.html.SourceFile@2abf4075_1'/>
|
||||
1
|
||||
</td>
|
||||
<td class=''>
|
||||
<span class='pop'>
|
||||
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4e3958e7_1'></a>
|
||||
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@2abf4075_1'></a>
|
||||
<span>
|
||||
</span>
|
||||
</span>
|
||||
|
@ -30,12 +30,12 @@
|
|||
|
||||
<tr>
|
||||
<td class='na'>
|
||||
<a name='org.pitest.mutationtest.report.html.SourceFile@4e3958e7_2'/>
|
||||
<a name='org.pitest.mutationtest.report.html.SourceFile@2abf4075_2'/>
|
||||
2
|
||||
</td>
|
||||
<td class=''>
|
||||
<span class='pop'>
|
||||
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4e3958e7_2'></a>
|
||||
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@2abf4075_2'></a>
|
||||
<span>
|
||||
</span>
|
||||
</span>
|
||||
|
@ -45,12 +45,12 @@
|
|||
|
||||
<tr>
|
||||
<td class='na'>
|
||||
<a name='org.pitest.mutationtest.report.html.SourceFile@4e3958e7_3'/>
|
||||
<a name='org.pitest.mutationtest.report.html.SourceFile@2abf4075_3'/>
|
||||
3
|
||||
</td>
|
||||
<td class=''>
|
||||
<span class='pop'>
|
||||
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4e3958e7_3'></a>
|
||||
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@2abf4075_3'></a>
|
||||
<span>
|
||||
</span>
|
||||
</span>
|
||||
|
@ -60,12 +60,12 @@
|
|||
|
||||
<tr>
|
||||
<td class='na'>
|
||||
<a name='org.pitest.mutationtest.report.html.SourceFile@4e3958e7_4'/>
|
||||
<a name='org.pitest.mutationtest.report.html.SourceFile@2abf4075_4'/>
|
||||
4
|
||||
</td>
|
||||
<td class=''>
|
||||
<span class='pop'>
|
||||
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4e3958e7_4'></a>
|
||||
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@2abf4075_4'></a>
|
||||
<span>
|
||||
</span>
|
||||
</span>
|
||||
|
@ -75,12 +75,12 @@
|
|||
|
||||
<tr>
|
||||
<td class='na'>
|
||||
<a name='org.pitest.mutationtest.report.html.SourceFile@4e3958e7_5'/>
|
||||
<a name='org.pitest.mutationtest.report.html.SourceFile@2abf4075_5'/>
|
||||
5
|
||||
</td>
|
||||
<td class=''>
|
||||
<span class='pop'>
|
||||
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4e3958e7_5'></a>
|
||||
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@2abf4075_5'></a>
|
||||
<span>
|
||||
</span>
|
||||
</span>
|
||||
|
@ -90,12 +90,12 @@
|
|||
|
||||
<tr>
|
||||
<td class='na'>
|
||||
<a name='org.pitest.mutationtest.report.html.SourceFile@4e3958e7_6'/>
|
||||
<a name='org.pitest.mutationtest.report.html.SourceFile@2abf4075_6'/>
|
||||
6
|
||||
</td>
|
||||
<td class=''>
|
||||
<span class='pop'>
|
||||
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4e3958e7_6'></a>
|
||||
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@2abf4075_6'></a>
|
||||
<span>
|
||||
</span>
|
||||
</span>
|
||||
|
@ -105,12 +105,12 @@
|
|||
|
||||
<tr>
|
||||
<td class='covered'>
|
||||
<a name='org.pitest.mutationtest.report.html.SourceFile@4e3958e7_7'/>
|
||||
<a name='org.pitest.mutationtest.report.html.SourceFile@2abf4075_7'/>
|
||||
7
|
||||
</td>
|
||||
<td class=''>
|
||||
<span class='pop'>
|
||||
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4e3958e7_7'></a>
|
||||
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@2abf4075_7'></a>
|
||||
<span>
|
||||
</span>
|
||||
</span>
|
||||
|
@ -120,12 +120,12 @@
|
|||
|
||||
<tr>
|
||||
<td class='na'>
|
||||
<a name='org.pitest.mutationtest.report.html.SourceFile@4e3958e7_8'/>
|
||||
<a name='org.pitest.mutationtest.report.html.SourceFile@2abf4075_8'/>
|
||||
8
|
||||
</td>
|
||||
<td class=''>
|
||||
<span class='pop'>
|
||||
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4e3958e7_8'></a>
|
||||
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@2abf4075_8'></a>
|
||||
<span>
|
||||
</span>
|
||||
</span>
|
||||
|
@ -135,12 +135,12 @@
|
|||
|
||||
<tr>
|
||||
<td class='na'>
|
||||
<a name='org.pitest.mutationtest.report.html.SourceFile@4e3958e7_9'/>
|
||||
<a name='org.pitest.mutationtest.report.html.SourceFile@2abf4075_9'/>
|
||||
9
|
||||
</td>
|
||||
<td class=''>
|
||||
<span class='pop'>
|
||||
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4e3958e7_9'></a>
|
||||
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@2abf4075_9'></a>
|
||||
<span>
|
||||
</span>
|
||||
</span>
|
||||
|
@ -150,12 +150,12 @@
|
|||
|
||||
<tr>
|
||||
<td class='covered'>
|
||||
<a name='org.pitest.mutationtest.report.html.SourceFile@4e3958e7_10'/>
|
||||
<a name='org.pitest.mutationtest.report.html.SourceFile@2abf4075_10'/>
|
||||
10
|
||||
</td>
|
||||
<td class='survived'>
|
||||
<span class='pop'>
|
||||
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4e3958e7_10'>1</a>
|
||||
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@2abf4075_10'>1</a>
|
||||
<span>
|
||||
1. verifyHello : removed call to org/junit/jupiter/api/Assertions::assertEquals → SURVIVED<br/>
|
||||
|
||||
|
@ -167,12 +167,12 @@
|
|||
|
||||
<tr>
|
||||
<td class='covered'>
|
||||
<a name='org.pitest.mutationtest.report.html.SourceFile@4e3958e7_11'/>
|
||||
<a name='org.pitest.mutationtest.report.html.SourceFile@2abf4075_11'/>
|
||||
11
|
||||
</td>
|
||||
<td class=''>
|
||||
<span class='pop'>
|
||||
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4e3958e7_11'></a>
|
||||
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@2abf4075_11'></a>
|
||||
<span>
|
||||
</span>
|
||||
</span>
|
||||
|
@ -182,12 +182,12 @@
|
|||
|
||||
<tr>
|
||||
<td class='na'>
|
||||
<a name='org.pitest.mutationtest.report.html.SourceFile@4e3958e7_12'/>
|
||||
<a name='org.pitest.mutationtest.report.html.SourceFile@2abf4075_12'/>
|
||||
12
|
||||
</td>
|
||||
<td class=''>
|
||||
<span class='pop'>
|
||||
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4e3958e7_12'></a>
|
||||
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@2abf4075_12'></a>
|
||||
<span>
|
||||
</span>
|
||||
</span>
|
||||
|
@ -199,11 +199,11 @@
|
|||
<tr><td></td><td></td><td><h2>Mutations</h2></td></tr>
|
||||
|
||||
<tr>
|
||||
<td><a href='#org.pitest.mutationtest.report.html.SourceFile@4e3958e7_10'>10</a></td>
|
||||
<td><a href='#org.pitest.mutationtest.report.html.SourceFile@2abf4075_10'>10</a></td>
|
||||
<td></td>
|
||||
<td>
|
||||
|
||||
<a name='grouporg.pitest.mutationtest.report.html.SourceFile@4e3958e7_10'/>
|
||||
<a name='grouporg.pitest.mutationtest.report.html.SourceFile@2abf4075_10'/>
|
||||
|
||||
<p class='SURVIVED'><span class='pop'>1.<span><b>1</b><br/><b>Location : </b>verifyHello<br/><b>Killed by : </b>none</span></span> removed call to org/junit/jupiter/api/Assertions::assertEquals → SURVIVED</p>
|
||||
</td>
|
||||
|
@ -230,12 +230,12 @@
|
|||
|
||||
<h2>Tests examined</h2>
|
||||
<ul>
|
||||
<li>com.example.ExamplesTest.[engine:junit-jupiter]/[class:com.example.ExamplesTest]/[method:verifyHello()] (9 ms)</li>
|
||||
<li>com.example.ExamplesTest.[engine:junit-jupiter]/[class:com.example.ExamplesTest]/[method:verifyHello()] (8 ms)</li>
|
||||
</ul>
|
||||
|
||||
<br/>
|
||||
|
||||
Report generated by <a href='https://pitest.org'>PIT</a> 1.15.6
|
||||
Report generated by <a href='https://pitest.org'>PIT</a> 1.15.8
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -63,7 +63,7 @@
|
|||
|
||||
<hr/>
|
||||
|
||||
Report generated by <a href='https://pitest.org'>PIT</a> 1.15.6
|
||||
Report generated by <a href='https://pitest.org'>PIT</a> 1.15.8
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -58,7 +58,7 @@
|
|||
|
||||
<hr/>
|
||||
|
||||
Report generated by <a href='https://pitest.org'>PIT</a> 1.15.6
|
||||
Report generated by <a href='https://pitest.org'>PIT</a> 1.15.8
|
||||
|
||||
<br/>
|
||||
<br/>
|
||||
|
|
|
@ -19,14 +19,17 @@ public class ExamplesBuild extends Project {
|
|||
name = "Examples";
|
||||
version = version(0, 1, 0);
|
||||
|
||||
downloadSources = true;
|
||||
autoDownloadPurge = true;
|
||||
|
||||
repositories = List.of(MAVEN_CENTRAL, RIFE2_RELEASES);
|
||||
|
||||
scope(test)
|
||||
.include(dependency("org.pitest", "pitest", version(1, 15, 6)))
|
||||
.include(dependency("org.pitest", "pitest-command-line", version(1, 15, 6)))
|
||||
.include(dependency("org.pitest", "pitest", version(1, 15, 8)))
|
||||
.include(dependency("org.pitest", "pitest-command-line", version(1, 15, 8)))
|
||||
.include(dependency("org.pitest", "pitest-junit5-plugin", version(1, 2, 1)))
|
||||
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5, 10, 1)))
|
||||
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 10, 1)));
|
||||
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5, 10, 2)))
|
||||
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 10, 2)));
|
||||
}
|
||||
|
||||
public static void main(String[] args) {
|
||||
|
|
Binary file not shown.
|
@ -1,8 +1,8 @@
|
|||
bld.downloadExtensionJavadoc=false
|
||||
bld.downloadExtensionSources=true
|
||||
bld.extension-pmd=com.uwyn.rife2:bld-pmd:0.9.4
|
||||
bld.extension-jacoco=com.uwyn.rife2:bld-jacoco-report:0.9.1
|
||||
bld.repositories=MAVEN_LOCAL,MAVEN_CENTRAL,RIFE2_SNAPSHOTS,RIFE2_RELEASES
|
||||
bld.extension-pmd=com.uwyn.rife2:bld-pmd:0.9.7
|
||||
bld.extension-jacoco=com.uwyn.rife2:bld-jacoco-report:0.9.3
|
||||
bld.repositories=MAVEN_CENTRAL,MAVEN_LOCAL,RIFE2_SNAPSHOTS,RIFE2_RELEASES
|
||||
bld.downloadLocation=
|
||||
bld.sourceDirectories=
|
||||
bld.version=1.7.5
|
||||
bld.version=1.9.0
|
||||
|
|
|
@ -35,23 +35,23 @@ public class PitestOperationBuild extends Project {
|
|||
public PitestOperationBuild() {
|
||||
pkg = "rife.bld.extension";
|
||||
name = "PitestExtension";
|
||||
version = version(0, 9, 2, "SNAPSHOT");
|
||||
version = version(0, 9, 5);
|
||||
|
||||
javaRelease = 17;
|
||||
downloadSources = true;
|
||||
autoDownloadPurge = true;
|
||||
repositories = List.of(MAVEN_CENTRAL, RIFE2_RELEASES);
|
||||
|
||||
var pitest = version(1, 15, 6);
|
||||
var pitest = version(1, 15, 8);
|
||||
scope(compile)
|
||||
.include(dependency("com.uwyn.rife2", "bld", version(1, 7, 5)));
|
||||
.include(dependency("com.uwyn.rife2", "bld", version(1, 9, 0)));
|
||||
scope(test)
|
||||
.include(dependency("org.pitest", "pitest", pitest))
|
||||
.include(dependency("org.pitest", "pitest-command-line", pitest))
|
||||
.include(dependency("org.pitest", "pitest-junit5-plugin", version(1, 2, 1)))
|
||||
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5, 10, 1)))
|
||||
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 10, 1)))
|
||||
.include(dependency("org.assertj", "assertj-core", version(3, 25, 1)));
|
||||
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5, 10, 2)))
|
||||
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 10, 2)))
|
||||
.include(dependency("org.assertj", "assertj-core", version(3, 25, 3)));
|
||||
|
||||
javadocOperation()
|
||||
.javadocOptions()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue