In this section:
Table of Contents | ||
---|---|---|
|
jtest.fail
This setting enables or disables failing the build by returning a non-zero exit code if any violation is reported.
Acceptable Values
true | Failing the build is enabled. |
---|---|
false | Failing the build is disabled. |
jtest.show.settings
This setting specifies enables or disables printing the current settings and customizations, including the source of each configuration entry (for example, .properties file).
Acceptable Values
true | Priting the current settings is enabled. |
---|---|
false | Priting the current settings is disabled. |
jtest.data.additional
This setting specifies the path to the additional json.data file. You can specify more than one file by providing a comma-separated list of file paths.
Acceptable Values
[path] | The path to the additional json.data file(s). |
---|
Use double backslashes to specify the file path on Windows.
Anchor | ||||
---|---|---|---|---|
|
This setting enables or disables limiting the scope of analysis to specific files in each package. By default, Jtest will filter out and analyze the biggest file in each package, but you can configure the jtest.input.filter.files option to specify other files in each package to be filtered out.
Acceptable Values
true | Filtering files is enabled. |
---|---|
false | Default. Filtering files is disabled |
Example Usage
The following configuration limits the scope of analysis to one file per package by filtering out the biggest file in each package in the project (the jtest.input.filter.files
option is not configured):
jtest.input.filter=true
Anchor | ||||
---|---|---|---|---|
|
This setting specifies which files will be filtered out from each package in the project, and then analyzed by Jtest. It requires the jtest.input.filter option to be set to true
. Use a comma-separated list to specify more than one acceptable value.
Acceptable Values
totalPerPackage | Specifies the number of files that will be filtered. For example:
| ||
---|---|---|---|
size | Specifies the size of the files that will be filtered out (by default, in kilobytes, but you can explicitly specify the following units: b, m, g). For example:
| ||
date | Filters out the files that were modified within a specific date range. For example:
|
Info | ||
---|---|---|
| ||
By default, files are sorted by size. For example, the following set of values will filter out and analyze 5 biggest files that were last modified after January 1, 2016 (even if the overall number of such files is higher): You can enable sorting files by date by adding the |
Example Usage
The following configuration will filter out from each package and analyze 5 biggest files that are bigger than 2 kilobytes and smaller than 5 kilobytes, and were last modified on November 1, 2016:
jtest.input.filter.files=totalPerPackage:5,size>2,size<5,date>2016-11-01,date<2016-11-02
If you pass the option with the with the command line switch -property,
ensure that the values are in quotation marks:
-property jtest.input.filter.files="totalPerPackage:5,size>2,date>2016-11-01,date<2016-11-02"