testing
Installation
SKILL.md
Testing Guide for IntelliJ IDEA
Quick Start
./tests.cmd --module <module> --test <pattern>
--module— the JPS module containing the test classes (always use the test's own module). To find the module name, look at the.imlfile in the test's directory — the module name is the.imlfilename without the extension.--test— FQN, wildcard pattern, or FQN#methodName
# Single test class (FQN)
./tests.cmd --module intellij.cidr.compiler.custom.tests \
--test com.intellij.cidr.compiler.custom.CidrCustomCompilerReadTest
# Wildcard pattern
./tests.cmd --module intellij.goland.tests \
--test com.goide.comments.*Test