Unit Test Assistant can analyze your code to generate compilable unit tests for individual methods. It generates runnable test templates that include initial values and sample assertions, which can be easily modified or uncommented.
UTA allows you to create tests for private methods to achieve a higher code coverage rate.
By default, the Create tests for private methods option is disabled, since the industry best practice is to test private methods by creating tests for the accessible methods that call them, rather than by creating tests for private methods directly.
You can create a new test by cloning an already existing one and modifying the content of the duplicate.
You can clone one test multiple times. The names of the duplicates will be followed by consecutive numbers.
You can create a new test by clicking the Cover the line option in the UTA interface. This will create a test case to cover the testable code line selected in the editor. The values required for the test to cover the line will be automatically set by UTA during generation or will need to be manually configured after the test is created. See Covering a Selected Line for details.