Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Henry Coles committed Nov 17, 2022
1 parent f9b727a commit 9d7fefc
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ Read all about it at http://pitest.org

## Releases

## 1.10.0 (unreleased)

* #1067 Improved Quarkus and Roboelectric support

As a result of #1067 it is important that mutations are only created for a single class for each JVM. The `MutationGrouper` extension point has therefore been removed as this allowed this constraint to be violated. Any third party plugins using this extension are no longer supported.

### 1.9.11

* #1105 Aggregator resolves wrong file for out of package kotlin files with same name
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -400,10 +400,10 @@ public void shouldWorkWithQuarkus() throws Exception {

String actual = readResults(testDir);
// Test is flaky. Needs investigation
//assertThat(actual)
// .contains(
// "<mutation detected='false' status='SURVIVED' numberOfTestsRun='2'>" +
// "<sourceFile>ExampleController.java</sourceFile>");
assertThat(actual)
.contains(
"<mutation detected='false' status='SURVIVED' numberOfTestsRun='2'>" +
"<sourceFile>ExampleController.java</sourceFile>");

assertThat(actual)
.contains(
Expand Down

0 comments on commit 9d7fefc

Please sign in to comment.