In this section:
${class_name}
- The name of the tested class.${package_name}
- The name of the package that includes the tested class.${source_folder}
- The name of the folder that contains the source files of the project.${project_name}
- The name of the project that includes the tested class.${test_kind}
- The name of the test type, which will be added to the file name. This variable can take the following values:Spring
- Separates Spring tests from other tests in JUnit 4 and 5.Parameterized
- Separates parameterized tests from regular test in JUnit 4. In JUnit 5, regular and parameterized test cases are added to the same file.Select the testing framework UTA will use to create new tests.
If you choose JUnit 4, you need to select the framework for creating parameterized test cases.
If you choose JUnit 5, Junit 5 Parameterized will automatically be enabled for creating parameterized test cases.
You can click Parameterization Settings to configure input data for creating parameterized test cases with the Add test case(s) option (see Creating a Parameterized Unit Test).
You can customize the default list of values by selecting a data type from the Select type drop-down menu and adding, editing or removing the values in the list. The Find field allows you to conveniently search for a particular value.
When you add new values, the characters must match the character encoding that will be used to save the files to ensure that the files are properly generated.
Enable or disable the test creation options.
Generate sample assertions - if enabled, UTA will automatically generate assertion templates when a test case is created. Assertions will be created as comments in code; see Creating a Basic Unit Test for details. This option is enabled by default.
Create tests for private methods - if enabled, UTA will display action links that allow you to create regular, parameterized, and Spring unit tests for private methods. This option is disabled by default.
Enable or disable the Automatically discover tagged factory methods option. If enabled, UTA will automatically:
- scan all projects for factory methods on the IDE startup
- search for updates to factory methods when your project is modified (for example, when you create or delete a Java file or project).
See Configuring Factory Methods for details. This option is enabled by default.
(optional) Specify the attributes that will be included in the ContextConfiguration annotation when a Spring test is created; see Creating a Spring Unit Test.
Specify which recommendations you want UTA to display after test execution.
Additional threads - detects side threads, which may impact the state of your test.
Assertions for inaccessible fields - detects inaccessible fields that have been modified during execution and generates assertion templates.
Files created - detects files that were created during the test run, but were not removed after execution.
Mockable invocations - detects calls to mock objects that can be modified to ensure proper test isolation.
No assertions - detects when no assertions have been made.
Static fields changed - detects when static fields have been modified during test execution.
Mockable static invocations (JUnit 4 only, requires PowerMock) - detects calls to the static methods that are configured to be mocked with PowerMock (see Configuring Mocking Options)
System properties changed - detects system properties that were modified during the test run, but not restored after execution.
Uncovered code - detects uncovered blocks of code.
See Executing Unit Tests with Unit Test Assistant for examples of recommendations displayed by UTA.
Specify the mocking framework that you use.
The options are only available if you configured UTA to use JUnit 4 (see Configuring General Options), because PowerMock currently does not support JUnit 5. If you create your tests with JUnit 5, the Mockito framework will be used by default.
UTA automatically detects the Mockito version you are using and creates unit tests following the detected version of the API. If Mockito is not detected, UTA creates tests using Mockito 2. |
.*
or <init>
will be matched with constructors. For example, the following configuration will mock:DAO
classes in all sub-packages of "com.example",InternalUtil
class.mockStatic()
method which mocks all static methods of a class. Otherwise, the spy()
method will be used to mock individual methods that are specified. For details about the mockStatic()
and spy()
methods, see https://github.com/powermock/powermock/wiki/Mockito#usage. Configuring UTA execution monitor options allows you to specify the limits for collecting data during test execution. In addition, to prevent exceeding the limits, you can specify packages and classes you want to exclude from monitoring when executing tests with UTA.