Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
m-tanigt authored Jan 17, 2022
1 parent 6ad5df6 commit b712724
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ https://plugins.gradle.org/plugin/com.github.m-tanigt.jtdog
Using the [plugins DSL](https://docs.gradle.org/current/userguide/plugins.html#sec:plugins_block):
```groovy
plugins {
id 'com.github.m-tanigt.jtdog' version '1.0.3'
id 'com.github.m-tanigt.jtdog' version '1.1.0'
}
```

Expand All @@ -23,7 +23,7 @@ buildscript {
}
}
dependencies {
classpath "gradle.plugin.com.github.m-tanigt:jtdog-plugin:1.0.3"
classpath "gradle.plugin.com.github.m-tanigt:jtdog-plugin:1.1.0"
}
}
Expand All @@ -42,7 +42,7 @@ The detection results are output as a JSON file in the `out` directory.
```groovy
sniff {
junitVersion = 4
rerunsFailure = 10
rerunTimes = 10
runsInRondomOrder = 10
detectStaticSmells = false
outputDirectory = "out"
Expand All @@ -51,7 +51,7 @@ sniff {
| Property | Type | Description |
|----------|------|-------------|
| `junitVersion` | `integer` | The JUnit version you use. Default to `4`. You can use JUnit5 by setting the value of this property to `5`. If you are using JUnit3, set it to `4` (because JUnit4 runner can run JUnit3 test).|
| `rerunsFailure` | `integer` | Number of times to rerun a failed test. Default to `10`.|
| `rerunTimes` | `integer` | Number of times to rerun tests. Default to `10`.|
| `runsInRondomOrder` | `integer` | Number of times to run tests in random order. Default to `10`.|
| `detectStaticSmells` | `boolean` | Whether to detect static test smells. Default to `false`|
| `outputDirectory` | `String` | Name of the directory to output results. Default to `"out"`|
Expand Down

0 comments on commit b712724

Please sign in to comment.