1# **Asuite IntelliJ plugin** 2 3## **Development** 4 5#### How to build/install the plugin 6 7**Build:** `$./gradlew jar` 8 9The artifact will be generated at build/libs/asuite_plugin-1.0.jar. 10 11**Install:** Place the asuite_plugin-1.0.jar into the IntelliJ/plugins 12 directory. The typical path of IntelliJ is /opt/intellij. 13 14**Debug in IntelliJ:** Edit configurations -> use `+` to add a Gradle configuration -> fill 15 16gradle project:`Absolute path of asuite_plugin` 17 18Tasks: `:runIde` 19 20**Quick run in IntelliJ sandbox:** `$./gradlew :runIde` 21 22#### Quick start 23 241. Click Atest button, the Atest tool window shall show up. 252. Fill in the test module. 26 * Enter a target module, e.g. aidegen_unittests. 27 * Or fill target path with check test_mapping checkbox, E.g. 28 tools/tradefederation/core. 293. Click Run, the test result will be shown in Atest tool window. 30 31