Skip to content

Commit

Permalink
normalize Groovy strings
Browse files Browse the repository at this point in the history
  • Loading branch information
robfletcher committed Aug 25, 2018
1 parent 1fd81df commit 619938d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions gradle/pitest.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
apply plugin: 'info.solidsoft.pitest'
apply plugin: "info.solidsoft.pitest"

pitest {
testPlugin = "junit5"
avoidCallsTo = ["kotlin.jvm.internal"]
mutators = ["NEW_DEFAULTS"]
targetClasses = ['strikt.*'] //by default "${project.group}.*"
targetTests = ['strikt.**.*']
targetClasses = ["strikt.*"] //by default "${project.group}.*"
targetTests = ["strikt.**.*"]
pitestVersion = "1.4.2"
threads = Runtime.getRuntime().availableProcessors()
outputFormats = ['XML', 'HTML']
outputFormats = ["XML", "HTML"]
}

0 comments on commit 619938d

Please sign in to comment.