Compare commits
3 commits
Author | SHA1 | Date | |
---|---|---|---|
eca67ecf0b | |||
508ab65ede | |||
42e15a6803 |
15 changed files with 75 additions and 72 deletions
4
.idea/libraries/bld.xml
generated
4
.idea/libraries/bld.xml
generated
|
@ -2,12 +2,12 @@
|
||||||
<library name="bld">
|
<library name="bld">
|
||||||
<CLASSES>
|
<CLASSES>
|
||||||
<root url="file://$PROJECT_DIR$/lib/bld" />
|
<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.8.0.jar!/" />
|
||||||
</CLASSES>
|
</CLASSES>
|
||||||
<JAVADOC />
|
<JAVADOC />
|
||||||
<SOURCES>
|
<SOURCES>
|
||||||
<root url="file://$PROJECT_DIR$/lib/bld" />
|
<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.8.0-sources.jar!/" />
|
||||||
</SOURCES>
|
</SOURCES>
|
||||||
<excluded>
|
<excluded>
|
||||||
<root url="jar://$PROJECT_DIR$/lib/bld/bld-wrapper.jar!/" />
|
<root url="jar://$PROJECT_DIR$/lib/bld/bld-wrapper.jar!/" />
|
||||||
|
|
2
.vscode/settings.json
vendored
2
.vscode/settings.json
vendored
|
@ -7,7 +7,7 @@
|
||||||
],
|
],
|
||||||
"java.configuration.updateBuildConfiguration": "automatic",
|
"java.configuration.updateBuildConfiguration": "automatic",
|
||||||
"java.project.referencedLibraries": [
|
"java.project.referencedLibraries": [
|
||||||
"${HOME}/.bld/dist/bld-1.7.5.jar",
|
"${HOME}/.bld/dist/bld-1.8.0.jar",
|
||||||
"lib/compile/*.jar",
|
"lib/compile/*.jar",
|
||||||
"lib/runtime/*.jar",
|
"lib/runtime/*.jar",
|
||||||
"lib/test/*.jar"
|
"lib/test/*.jar"
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
[](https://opensource.org/licenses/Apache-2.0)
|
[](https://opensource.org/licenses/Apache-2.0)
|
||||||
[](https://www.oracle.com/java/technologies/javase/jdk17-archive-downloads.html)
|
[](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/#/releases/com/uwyn/rife2/bld-pitest)
|
||||||
[](https://repo.rife2.com/#/snapshots/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)
|
[](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
|
```java
|
||||||
repositories = List.of(MAVEN_CENTRAL);
|
repositories = List.of(MAVEN_CENTRAL);
|
||||||
scope(test)
|
scope(test)
|
||||||
.include(dependency("org.pitest", "pitest", version(1, 15, 6)))
|
.include(dependency("org.pitest", "pitest", version(1, 15, 7)))
|
||||||
.include(dependency("org.pitest", "pitest-command-line", version(1, 15, 6)))
|
.include(dependency("org.pitest", "pitest-command-line", version(1, 15, 7)))
|
||||||
.include(dependency("org.pitest", "pitest-junit5-plugin", version(1, 2, 1)))
|
.include(dependency("org.pitest", "pitest-junit5-plugin", version(1, 2, 1)))
|
||||||
.include(dependency("org.pitest", "pitest-testng-plugin", version(1, 0, 0)));
|
.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">
|
<library name="bld">
|
||||||
<CLASSES>
|
<CLASSES>
|
||||||
<root url="file://$PROJECT_DIR$/lib/bld" />
|
<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.8.0.jar!/" />
|
||||||
</CLASSES>
|
</CLASSES>
|
||||||
<JAVADOC />
|
<JAVADOC />
|
||||||
<SOURCES>
|
<SOURCES>
|
||||||
<root url="file://$PROJECT_DIR$/lib/bld" />
|
<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.8.0-sources.jar!/" />
|
||||||
</SOURCES>
|
</SOURCES>
|
||||||
<excluded>
|
<excluded>
|
||||||
<root url="jar://$PROJECT_DIR$/lib/bld/bld-wrapper.jar!/" />
|
<root url="jar://$PROJECT_DIR$/lib/bld/bld-wrapper.jar!/" />
|
||||||
|
|
2
examples/.vscode/settings.json
vendored
2
examples/.vscode/settings.json
vendored
|
@ -7,7 +7,7 @@
|
||||||
],
|
],
|
||||||
"java.configuration.updateBuildConfiguration": "automatic",
|
"java.configuration.updateBuildConfiguration": "automatic",
|
||||||
"java.project.referencedLibraries": [
|
"java.project.referencedLibraries": [
|
||||||
"${HOME}/.bld/dist/bld-1.7.5.jar",
|
"${HOME}/.bld/dist/bld-1.8.0.jar",
|
||||||
"lib/compile/*.jar",
|
"lib/compile/*.jar",
|
||||||
"lib/runtime/*.jar",
|
"lib/runtime/*.jar",
|
||||||
"lib/test/*.jar"
|
"lib/test/*.jar"
|
||||||
|
|
Binary file not shown.
|
@ -1,7 +1,7 @@
|
||||||
bld.downloadExtensionJavadoc=false
|
bld.downloadExtensionJavadoc=false
|
||||||
bld.downloadExtensionSources=true
|
bld.downloadExtensionSources=true
|
||||||
bld.extensions=com.uwyn.rife2:bld-pitest:0.9.1
|
bld.extensions=com.uwyn.rife2:bld-pitest:0.9.3
|
||||||
bld.repositories=MAVEN_CENTRAL,RIFE2_RELEASES,MAVEN_LOCAL,RIFE2_SNAPSHOTS
|
bld.repositories=MAVEN_CENTRAL,RIFE2_RELEASES,MAVEN_LOCAL,RIFE2_SNAPSHOTS
|
||||||
bld.downloadLocation=
|
bld.downloadLocation=
|
||||||
bld.sourceDirectories=
|
bld.sourceDirectories=
|
||||||
bld.version=1.7.5
|
bld.version=1.8.0
|
||||||
|
|
|
@ -15,12 +15,12 @@
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td class='na'>
|
<td class='na'>
|
||||||
<a name='org.pitest.mutationtest.report.html.SourceFile@2d2ffcb7_1'/>
|
<a name='org.pitest.mutationtest.report.html.SourceFile@140c9f39_1'/>
|
||||||
1
|
1
|
||||||
</td>
|
</td>
|
||||||
<td class=''>
|
<td class=''>
|
||||||
<span class='pop'>
|
<span class='pop'>
|
||||||
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@2d2ffcb7_1'></a>
|
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@140c9f39_1'></a>
|
||||||
<span>
|
<span>
|
||||||
</span>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
|
@ -30,12 +30,12 @@
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td class='na'>
|
<td class='na'>
|
||||||
<a name='org.pitest.mutationtest.report.html.SourceFile@2d2ffcb7_2'/>
|
<a name='org.pitest.mutationtest.report.html.SourceFile@140c9f39_2'/>
|
||||||
2
|
2
|
||||||
</td>
|
</td>
|
||||||
<td class=''>
|
<td class=''>
|
||||||
<span class='pop'>
|
<span class='pop'>
|
||||||
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@2d2ffcb7_2'></a>
|
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@140c9f39_2'></a>
|
||||||
<span>
|
<span>
|
||||||
</span>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
|
@ -45,12 +45,12 @@
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td class='covered'>
|
<td class='covered'>
|
||||||
<a name='org.pitest.mutationtest.report.html.SourceFile@2d2ffcb7_3'/>
|
<a name='org.pitest.mutationtest.report.html.SourceFile@140c9f39_3'/>
|
||||||
3
|
3
|
||||||
</td>
|
</td>
|
||||||
<td class=''>
|
<td class=''>
|
||||||
<span class='pop'>
|
<span class='pop'>
|
||||||
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@2d2ffcb7_3'></a>
|
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@140c9f39_3'></a>
|
||||||
<span>
|
<span>
|
||||||
</span>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
|
@ -60,12 +60,12 @@
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td class='na'>
|
<td class='na'>
|
||||||
<a name='org.pitest.mutationtest.report.html.SourceFile@2d2ffcb7_4'/>
|
<a name='org.pitest.mutationtest.report.html.SourceFile@140c9f39_4'/>
|
||||||
4
|
4
|
||||||
</td>
|
</td>
|
||||||
<td class=''>
|
<td class=''>
|
||||||
<span class='pop'>
|
<span class='pop'>
|
||||||
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@2d2ffcb7_4'></a>
|
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@140c9f39_4'></a>
|
||||||
<span>
|
<span>
|
||||||
</span>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
|
@ -75,12 +75,12 @@
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td class='covered'>
|
<td class='covered'>
|
||||||
<a name='org.pitest.mutationtest.report.html.SourceFile@2d2ffcb7_5'/>
|
<a name='org.pitest.mutationtest.report.html.SourceFile@140c9f39_5'/>
|
||||||
5
|
5
|
||||||
</td>
|
</td>
|
||||||
<td class='killed'>
|
<td class='killed'>
|
||||||
<span class='pop'>
|
<span class='pop'>
|
||||||
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@2d2ffcb7_5'>1</a>
|
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@140c9f39_5'>1</a>
|
||||||
<span>
|
<span>
|
||||||
1. getMessage : replaced return value with "" for com/example/ExamplesLib::getMessage → KILLED<br/>
|
1. getMessage : replaced return value with "" for com/example/ExamplesLib::getMessage → KILLED<br/>
|
||||||
|
|
||||||
|
@ -92,12 +92,12 @@
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td class='na'>
|
<td class='na'>
|
||||||
<a name='org.pitest.mutationtest.report.html.SourceFile@2d2ffcb7_6'/>
|
<a name='org.pitest.mutationtest.report.html.SourceFile@140c9f39_6'/>
|
||||||
6
|
6
|
||||||
</td>
|
</td>
|
||||||
<td class=''>
|
<td class=''>
|
||||||
<span class='pop'>
|
<span class='pop'>
|
||||||
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@2d2ffcb7_6'></a>
|
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@140c9f39_6'></a>
|
||||||
<span>
|
<span>
|
||||||
</span>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
|
@ -107,12 +107,12 @@
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td class='na'>
|
<td class='na'>
|
||||||
<a name='org.pitest.mutationtest.report.html.SourceFile@2d2ffcb7_7'/>
|
<a name='org.pitest.mutationtest.report.html.SourceFile@140c9f39_7'/>
|
||||||
7
|
7
|
||||||
</td>
|
</td>
|
||||||
<td class=''>
|
<td class=''>
|
||||||
<span class='pop'>
|
<span class='pop'>
|
||||||
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@2d2ffcb7_7'></a>
|
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@140c9f39_7'></a>
|
||||||
<span>
|
<span>
|
||||||
</span>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
|
@ -124,11 +124,11 @@
|
||||||
<tr><td></td><td></td><td><h2>Mutations</h2></td></tr>
|
<tr><td></td><td></td><td><h2>Mutations</h2></td></tr>
|
||||||
|
|
||||||
<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@140c9f39_5'>5</a></td>
|
||||||
<td></td>
|
<td></td>
|
||||||
<td>
|
<td>
|
||||||
|
|
||||||
<a name='grouporg.pitest.mutationtest.report.html.SourceFile@2d2ffcb7_5'/>
|
<a name='grouporg.pitest.mutationtest.report.html.SourceFile@140c9f39_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>
|
<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>
|
</td>
|
||||||
|
@ -155,12 +155,12 @@
|
||||||
|
|
||||||
<h2>Tests examined</h2>
|
<h2>Tests examined</h2>
|
||||||
<ul>
|
<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()] (7 ms)</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<br/>
|
<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.7
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
|
@ -15,12 +15,12 @@
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td class='na'>
|
<td class='na'>
|
||||||
<a name='org.pitest.mutationtest.report.html.SourceFile@4e3958e7_1'/>
|
<a name='org.pitest.mutationtest.report.html.SourceFile@3972a855_1'/>
|
||||||
1
|
1
|
||||||
</td>
|
</td>
|
||||||
<td class=''>
|
<td class=''>
|
||||||
<span class='pop'>
|
<span class='pop'>
|
||||||
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4e3958e7_1'></a>
|
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@3972a855_1'></a>
|
||||||
<span>
|
<span>
|
||||||
</span>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
|
@ -30,12 +30,12 @@
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td class='na'>
|
<td class='na'>
|
||||||
<a name='org.pitest.mutationtest.report.html.SourceFile@4e3958e7_2'/>
|
<a name='org.pitest.mutationtest.report.html.SourceFile@3972a855_2'/>
|
||||||
2
|
2
|
||||||
</td>
|
</td>
|
||||||
<td class=''>
|
<td class=''>
|
||||||
<span class='pop'>
|
<span class='pop'>
|
||||||
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4e3958e7_2'></a>
|
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@3972a855_2'></a>
|
||||||
<span>
|
<span>
|
||||||
</span>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
|
@ -45,12 +45,12 @@
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td class='na'>
|
<td class='na'>
|
||||||
<a name='org.pitest.mutationtest.report.html.SourceFile@4e3958e7_3'/>
|
<a name='org.pitest.mutationtest.report.html.SourceFile@3972a855_3'/>
|
||||||
3
|
3
|
||||||
</td>
|
</td>
|
||||||
<td class=''>
|
<td class=''>
|
||||||
<span class='pop'>
|
<span class='pop'>
|
||||||
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4e3958e7_3'></a>
|
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@3972a855_3'></a>
|
||||||
<span>
|
<span>
|
||||||
</span>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
|
@ -60,12 +60,12 @@
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td class='na'>
|
<td class='na'>
|
||||||
<a name='org.pitest.mutationtest.report.html.SourceFile@4e3958e7_4'/>
|
<a name='org.pitest.mutationtest.report.html.SourceFile@3972a855_4'/>
|
||||||
4
|
4
|
||||||
</td>
|
</td>
|
||||||
<td class=''>
|
<td class=''>
|
||||||
<span class='pop'>
|
<span class='pop'>
|
||||||
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4e3958e7_4'></a>
|
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@3972a855_4'></a>
|
||||||
<span>
|
<span>
|
||||||
</span>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
|
@ -75,12 +75,12 @@
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td class='na'>
|
<td class='na'>
|
||||||
<a name='org.pitest.mutationtest.report.html.SourceFile@4e3958e7_5'/>
|
<a name='org.pitest.mutationtest.report.html.SourceFile@3972a855_5'/>
|
||||||
5
|
5
|
||||||
</td>
|
</td>
|
||||||
<td class=''>
|
<td class=''>
|
||||||
<span class='pop'>
|
<span class='pop'>
|
||||||
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4e3958e7_5'></a>
|
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@3972a855_5'></a>
|
||||||
<span>
|
<span>
|
||||||
</span>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
|
@ -90,12 +90,12 @@
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td class='na'>
|
<td class='na'>
|
||||||
<a name='org.pitest.mutationtest.report.html.SourceFile@4e3958e7_6'/>
|
<a name='org.pitest.mutationtest.report.html.SourceFile@3972a855_6'/>
|
||||||
6
|
6
|
||||||
</td>
|
</td>
|
||||||
<td class=''>
|
<td class=''>
|
||||||
<span class='pop'>
|
<span class='pop'>
|
||||||
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4e3958e7_6'></a>
|
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@3972a855_6'></a>
|
||||||
<span>
|
<span>
|
||||||
</span>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
|
@ -105,12 +105,12 @@
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td class='covered'>
|
<td class='covered'>
|
||||||
<a name='org.pitest.mutationtest.report.html.SourceFile@4e3958e7_7'/>
|
<a name='org.pitest.mutationtest.report.html.SourceFile@3972a855_7'/>
|
||||||
7
|
7
|
||||||
</td>
|
</td>
|
||||||
<td class=''>
|
<td class=''>
|
||||||
<span class='pop'>
|
<span class='pop'>
|
||||||
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4e3958e7_7'></a>
|
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@3972a855_7'></a>
|
||||||
<span>
|
<span>
|
||||||
</span>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
|
@ -120,12 +120,12 @@
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td class='na'>
|
<td class='na'>
|
||||||
<a name='org.pitest.mutationtest.report.html.SourceFile@4e3958e7_8'/>
|
<a name='org.pitest.mutationtest.report.html.SourceFile@3972a855_8'/>
|
||||||
8
|
8
|
||||||
</td>
|
</td>
|
||||||
<td class=''>
|
<td class=''>
|
||||||
<span class='pop'>
|
<span class='pop'>
|
||||||
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4e3958e7_8'></a>
|
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@3972a855_8'></a>
|
||||||
<span>
|
<span>
|
||||||
</span>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
|
@ -135,12 +135,12 @@
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td class='na'>
|
<td class='na'>
|
||||||
<a name='org.pitest.mutationtest.report.html.SourceFile@4e3958e7_9'/>
|
<a name='org.pitest.mutationtest.report.html.SourceFile@3972a855_9'/>
|
||||||
9
|
9
|
||||||
</td>
|
</td>
|
||||||
<td class=''>
|
<td class=''>
|
||||||
<span class='pop'>
|
<span class='pop'>
|
||||||
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4e3958e7_9'></a>
|
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@3972a855_9'></a>
|
||||||
<span>
|
<span>
|
||||||
</span>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
|
@ -150,12 +150,12 @@
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td class='covered'>
|
<td class='covered'>
|
||||||
<a name='org.pitest.mutationtest.report.html.SourceFile@4e3958e7_10'/>
|
<a name='org.pitest.mutationtest.report.html.SourceFile@3972a855_10'/>
|
||||||
10
|
10
|
||||||
</td>
|
</td>
|
||||||
<td class='survived'>
|
<td class='survived'>
|
||||||
<span class='pop'>
|
<span class='pop'>
|
||||||
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4e3958e7_10'>1</a>
|
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@3972a855_10'>1</a>
|
||||||
<span>
|
<span>
|
||||||
1. verifyHello : removed call to org/junit/jupiter/api/Assertions::assertEquals → SURVIVED<br/>
|
1. verifyHello : removed call to org/junit/jupiter/api/Assertions::assertEquals → SURVIVED<br/>
|
||||||
|
|
||||||
|
@ -167,12 +167,12 @@
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td class='covered'>
|
<td class='covered'>
|
||||||
<a name='org.pitest.mutationtest.report.html.SourceFile@4e3958e7_11'/>
|
<a name='org.pitest.mutationtest.report.html.SourceFile@3972a855_11'/>
|
||||||
11
|
11
|
||||||
</td>
|
</td>
|
||||||
<td class=''>
|
<td class=''>
|
||||||
<span class='pop'>
|
<span class='pop'>
|
||||||
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4e3958e7_11'></a>
|
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@3972a855_11'></a>
|
||||||
<span>
|
<span>
|
||||||
</span>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
|
@ -182,12 +182,12 @@
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td class='na'>
|
<td class='na'>
|
||||||
<a name='org.pitest.mutationtest.report.html.SourceFile@4e3958e7_12'/>
|
<a name='org.pitest.mutationtest.report.html.SourceFile@3972a855_12'/>
|
||||||
12
|
12
|
||||||
</td>
|
</td>
|
||||||
<td class=''>
|
<td class=''>
|
||||||
<span class='pop'>
|
<span class='pop'>
|
||||||
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@4e3958e7_12'></a>
|
<a href='#grouporg.pitest.mutationtest.report.html.SourceFile@3972a855_12'></a>
|
||||||
<span>
|
<span>
|
||||||
</span>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
|
@ -199,11 +199,11 @@
|
||||||
<tr><td></td><td></td><td><h2>Mutations</h2></td></tr>
|
<tr><td></td><td></td><td><h2>Mutations</h2></td></tr>
|
||||||
|
|
||||||
<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@3972a855_10'>10</a></td>
|
||||||
<td></td>
|
<td></td>
|
||||||
<td>
|
<td>
|
||||||
|
|
||||||
<a name='grouporg.pitest.mutationtest.report.html.SourceFile@4e3958e7_10'/>
|
<a name='grouporg.pitest.mutationtest.report.html.SourceFile@3972a855_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>
|
<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>
|
</td>
|
||||||
|
@ -230,12 +230,12 @@
|
||||||
|
|
||||||
<h2>Tests examined</h2>
|
<h2>Tests examined</h2>
|
||||||
<ul>
|
<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()] (7 ms)</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<br/>
|
<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.7
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
|
@ -63,7 +63,7 @@
|
||||||
|
|
||||||
<hr/>
|
<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.7
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
|
@ -58,7 +58,7 @@
|
||||||
|
|
||||||
<hr/>
|
<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.7
|
||||||
|
|
||||||
<br/>
|
<br/>
|
||||||
<br/>
|
<br/>
|
||||||
|
|
|
@ -19,14 +19,17 @@ public class ExamplesBuild extends Project {
|
||||||
name = "Examples";
|
name = "Examples";
|
||||||
version = version(0, 1, 0);
|
version = version(0, 1, 0);
|
||||||
|
|
||||||
|
downloadSources = true;
|
||||||
|
autoDownloadPurge = true;
|
||||||
|
|
||||||
repositories = List.of(MAVEN_CENTRAL, RIFE2_RELEASES);
|
repositories = List.of(MAVEN_CENTRAL, RIFE2_RELEASES);
|
||||||
|
|
||||||
scope(test)
|
scope(test)
|
||||||
.include(dependency("org.pitest", "pitest", version(1, 15, 6)))
|
.include(dependency("org.pitest", "pitest", version(1, 15, 7)))
|
||||||
.include(dependency("org.pitest", "pitest-command-line", version(1, 15, 6)))
|
.include(dependency("org.pitest", "pitest-command-line", version(1, 15, 7)))
|
||||||
.include(dependency("org.pitest", "pitest-junit5-plugin", version(1, 2, 1)))
|
.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.jupiter", "junit-jupiter", version(5, 10, 2)))
|
||||||
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 10, 1)));
|
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 10, 2)));
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
|
|
Binary file not shown.
|
@ -1,8 +1,8 @@
|
||||||
bld.downloadExtensionJavadoc=false
|
bld.downloadExtensionJavadoc=false
|
||||||
bld.downloadExtensionSources=true
|
bld.downloadExtensionSources=true
|
||||||
bld.extension-pmd=com.uwyn.rife2:bld-pmd:0.9.4
|
bld.extension-pmd=com.uwyn.rife2:bld-pmd:0.9.5
|
||||||
bld.extension-jacoco=com.uwyn.rife2:bld-jacoco-report:0.9.1
|
bld.extension-jacoco=com.uwyn.rife2:bld-jacoco-report:0.9.2
|
||||||
bld.repositories=MAVEN_LOCAL,MAVEN_CENTRAL,RIFE2_SNAPSHOTS,RIFE2_RELEASES
|
bld.repositories=MAVEN_LOCAL,MAVEN_CENTRAL,RIFE2_SNAPSHOTS,RIFE2_RELEASES
|
||||||
bld.downloadLocation=
|
bld.downloadLocation=
|
||||||
bld.sourceDirectories=
|
bld.sourceDirectories=
|
||||||
bld.version=1.7.5
|
bld.version=1.8.0
|
||||||
|
|
|
@ -35,23 +35,23 @@ public class PitestOperationBuild extends Project {
|
||||||
public PitestOperationBuild() {
|
public PitestOperationBuild() {
|
||||||
pkg = "rife.bld.extension";
|
pkg = "rife.bld.extension";
|
||||||
name = "PitestExtension";
|
name = "PitestExtension";
|
||||||
version = version(0, 9, 2, "SNAPSHOT");
|
version = version(0, 9, 3);
|
||||||
|
|
||||||
javaRelease = 17;
|
javaRelease = 17;
|
||||||
downloadSources = true;
|
downloadSources = true;
|
||||||
autoDownloadPurge = true;
|
autoDownloadPurge = true;
|
||||||
repositories = List.of(MAVEN_CENTRAL, RIFE2_RELEASES);
|
repositories = List.of(MAVEN_CENTRAL, RIFE2_RELEASES);
|
||||||
|
|
||||||
var pitest = version(1, 15, 6);
|
var pitest = version(1, 15, 7);
|
||||||
scope(compile)
|
scope(compile)
|
||||||
.include(dependency("com.uwyn.rife2", "bld", version(1, 7, 5)));
|
.include(dependency("com.uwyn.rife2", "bld", version(1, 8, 0)));
|
||||||
scope(test)
|
scope(test)
|
||||||
.include(dependency("org.pitest", "pitest", pitest))
|
.include(dependency("org.pitest", "pitest", pitest))
|
||||||
.include(dependency("org.pitest", "pitest-command-line", pitest))
|
.include(dependency("org.pitest", "pitest-command-line", pitest))
|
||||||
.include(dependency("org.pitest", "pitest-junit5-plugin", version(1, 2, 1)))
|
.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.jupiter", "junit-jupiter", version(5, 10, 2)))
|
||||||
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 10, 1)))
|
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 10, 2)))
|
||||||
.include(dependency("org.assertj", "assertj-core", version(3, 25, 1)));
|
.include(dependency("org.assertj", "assertj-core", version(3, 25, 3)));
|
||||||
|
|
||||||
javadocOperation()
|
javadocOperation()
|
||||||
.javadocOptions()
|
.javadocOptions()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue