Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dependency: bump pitest-maven from 1.8.1 to 1.9.0 #11761

Merged
merged 2 commits into from Jun 26, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions pom.xml
Expand Up @@ -214,11 +214,11 @@
</maven.sevntu-checkstyle-check.checkstyle.version>
<maven.versions.plugin.version>2.11.0</maven.versions.plugin.version>
<java.version>11</java.version>
<pitest.plugin.version>1.8.1</pitest.plugin.version>
<pitest.plugin.version>1.9.0</pitest.plugin.version>
<pitest.plugin.timeout.factor>10</pitest.plugin.timeout.factor>
<pitest.plugin.timeout.constant>50000</pitest.plugin.timeout.constant>
<pitest.plugin.threads>4</pitest.plugin.threads>
<pitest.junit5.plugin.version>0.16</pitest.junit5.plugin.version>
<pitest.junit5.plugin.version>1.0.0</pitest.junit5.plugin.version>
<sonar.test.exclusions>**/test/resources/**/*,**/it/resources/**/*</sonar.test.exclusions>
<junit.version>5.8.2</junit.version>
<forbiddenapis.version>3.3</forbiddenapis.version>
Expand Down
Expand Up @@ -45,6 +45,7 @@ public void testAcceptNoToken() {
null, XpathFileGeneratorAstFilterTest.class, null);
final TreeWalkerAuditEvent event = new TreeWalkerAuditEvent(null, null, violation, null);
final XpathFileGeneratorAstFilter filter = new XpathFileGeneratorAstFilter();
filter.finishLocalSetup();

assertWithMessage("filter accepted")
.that(filter.accept(event))
Expand All @@ -65,6 +66,7 @@ public void test() throws Exception {
final TreeWalkerAuditEvent event = createTreeWalkerAuditEvent(
"InputXpathFileGeneratorAstFilter.java", violation);
final XpathFileGeneratorAstFilter filter = new XpathFileGeneratorAstFilter();
filter.finishLocalSetup();

assertWithMessage("filter accepted")
.that(filter.accept(event))
Expand All @@ -87,6 +89,7 @@ public void testNoXpathQuery() throws Exception {
final TreeWalkerAuditEvent event = createTreeWalkerAuditEvent(
"InputXpathFileGeneratorAstFilter.java", violation);
final XpathFileGeneratorAstFilter filter = new XpathFileGeneratorAstFilter();
filter.finishLocalSetup();

assertWithMessage("filter accepted")
.that(filter.accept(event))
Expand All @@ -108,6 +111,7 @@ public void testTabWidth() throws Exception {
final TreeWalkerAuditEvent event = createTreeWalkerAuditEvent(
"InputXpathFileGeneratorAstFilter.java", violation);
final XpathFileGeneratorAstFilter filter = new XpathFileGeneratorAstFilter();
filter.finishLocalSetup();
filter.setTabWidth(6);

assertWithMessage("filter accepted")
Expand Down Expand Up @@ -141,6 +145,7 @@ public void testClearState() throws Exception {
"InputXpathFileGeneratorAstFilter.java", violation);

final XpathFileGeneratorAstFilter filter = new XpathFileGeneratorAstFilter();
filter.finishLocalSetup();

assertWithMessage("State is not cleared on finishLocalSetup")
.that(TestUtil.isStatefulFieldClearedDuringLocalSetup(filter, event,
Expand Down