You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -42,7 +42,7 @@ The detection results are output as a JSON file in the `out` directory.
42
42
```groovy
43
43
sniff {
44
44
junitVersion = 4
45
-
rerunsFailure = 10
45
+
rerunTimes = 10
46
46
runsInRondomOrder = 10
47
47
detectStaticSmells = false
48
48
outputDirectory = "out"
@@ -51,7 +51,7 @@ sniff {
51
51
| Property | Type | Description |
52
52
|----------|------|-------------|
53
53
|`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).|
54
-
|`rerunsFailure`|`integer`| Number of times to rerun a failed test. Default to `10`.|
54
+
|`rerunTimes`|`integer`| Number of times to rerun tests. Default to `10`.|
55
55
|`runsInRondomOrder`|`integer`| Number of times to run tests in random order. Default to `10`.|
56
56
|`detectStaticSmells`|`boolean`| Whether to detect static test smells. Default to `false`|
57
57
|`outputDirectory`|`String`| Name of the directory to output results. Default to `"out"`|
0 commit comments