简体   繁体   中英

Continuous testing with IntelliJ Idea

I'm looking for an IntelliJ IDEA plugin that would run my tests each time I change my code. I looked for such a solution and I found:

  • Infinitest , which works, but is inconvenient because I need to add the facet to each module, and it opens a new tool window for each module (which means 15 tool windows for me).
  • Fireworks - didn't work for me, maybe it just doesn't work with IDEA 14 (in its repo I can see that last changes were made in 2009). IntelliJ also reports that it throws exceptions.

There are lots of ways I could run all my tests (including writing a simple script for this), but I'm looking for a tool that would be smart enough to rerun failed tests first, and that would understand module dependencies (so after a change in some module it would run only tests of dependent modules).

I prefer free options, but if there's something paid for a reasonable price, I would accept it as well.

IntelliJ now actually has a Toggle auto-test in the run dialog. Just run a run-configuration and then select Toggle auto-test in the run dialog.

It's not as intelligent as you would have hoped. It just reruns when it detects changes.

I know this is a 3-year-old question but I think it will help people who face the similar problem in future. So I found out a way to enable SBT style auto test execution in IntelliJ studio.

We need to do 2 things to enable auto test execution.

  1. Enabling auto project build - This can be done in settings by going into File -> Settings -> Build, Execution... -> Compiler and selecting "Build Project automatically" .

在此处输入图片说明

  1. Enabling "Toggle auto-test" in run dialog box

This will start auto testing. Although this works fine, it takes time to build the project even when my project is tiny so for larger projects it will certainly take very long time to complete the build and execute tests.

Reference: Original article which explains these steps

如果您可以运行涵盖您选择的单个方法的测试,则可以尝试此插件(从某种意义上说,它是连续的,您对方法进行更改,然后单击该方法,该插件将自动运行所有单元测试其中涵盖了该方法): https : //plugins.jetbrains.com/plugin/15063-unit-test-coverage-history-runner

You can use the Intellij Teamcity plugin. Teamcity is a paid product but there is a free version which gives you 20 projects and 3 agents for free .

  1. It has a remote run feature using which you can send in unchecked code to run tests before committing.
  2. It also has options to run failed tests first

Usage instructions for Remote Run

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM