On this page:
Introduction
The libraries for JUnit and TestNG are shipped with IntelliJ IDEA, but are not included in the classpath of your project or module by default. Consequently, when a test class is created, the references to the TestCase class or test annotations are not resolved.
To add the necessary library to the classpath, you can use the general procedure of adding a dependency to a module. The corresponding libraries are located in the following directories:
- JUnit libraries (
junit.jarandjunit-4.11.jar):<IntelliJ IDEA directory>\lib. - TestNG library (
testng-jdk15.jar):<IntelliJ IDEA directory>\plugins\testng\lib.
IntelliJ IDEA can add the necessary library to the classpath automatically. The corresponding features are available when creating a test for a class or when writing the code for a test.
Adding test libraries
- In the editor, place the cursor within the line containing the class declaration.
- Press ⌥⏎⌥⏎⌘1⌥⏎⌥⏎ to view the available intention actions.
- Select Create Test.
- In the Create Test dialog, to the right of the text informing you
that the corresponding library is not found, click Fix.

- In the source code of a test class, place the cursor within an unresolved reference to
TestCaseor annotation. - Press ⌥⏎⌥⏎⌘1⌥⏎⌥⏎ to view the available intention actions.
- Select Add <library> to classpath.
