continuous-testing

Is it possible to run incremental/automated JUnit testing in Eclipse?

烂漫一生 提交于 2020-01-20 02:43:45
问题 Eclipse support incremental compiling. If I save a source file then it will compile the modified files. Is it possible after such incremental compile also to run the JUnit tests of the same package and show the fail in the error view. Then I can see the JUnit test failing and compiling errors in the same view without extra action. Are there any plugins that can do it? 回答1: You have to look at these plugins: JUnit Max: Not free, developed by Kent Benk (one of the men behind the TDD practice);

How do I set up NCrunch to run nspec tests

本秂侑毒 提交于 2019-12-07 03:02:26
问题 I'm struggling to set up NCrunch to run my nspec tests automatically. On the ncrunch forums it says this functionality has not been implemented yet, but then MattFlo says he prefers using NCrunch, so I'm pretty sure it can be made to work. Help would be greatly appreciated! 回答1: We are working on getting NCrunch fully supported. For now you can use the DebuggerShim (it's a cs file included with NSpec) as a shim to run it via NCrunch. The DebuggerShim is pretty much an NUnit test that runs

How do I set up NCrunch to run nspec tests

醉酒当歌 提交于 2019-12-05 09:11:19
I'm struggling to set up NCrunch to run my nspec tests automatically. On the ncrunch forums it says this functionality has not been implemented yet, but then MattFlo says he prefers using NCrunch, so I'm pretty sure it can be made to work. Help would be greatly appreciated! We are working on getting NCrunch fully supported. For now you can use the DebuggerShim (it's a cs file included with NSpec) as a shim to run it via NCrunch. The DebuggerShim is pretty much an NUnit test that runs NSpec tests. You may want to take a look at specwatchr . Matt likes to use NCruch, but I find that it's to

Continuous testing with IntelliJ Idea

会有一股神秘感。 提交于 2019-12-02 21:09:00
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

Is it possible to run incremental/automated JUnit testing in Eclipse?

懵懂的女人 提交于 2019-11-28 23:53:14
Eclipse support incremental compiling. If I save a source file then it will compile the modified files. Is it possible after such incremental compile also to run the JUnit tests of the same package and show the fail in the error view. Then I can see the JUnit test failing and compiling errors in the same view without extra action. Are there any plugins that can do it? You have to look at these plugins: JUnit Max : Not free, developed by Kent Benk (one of the men behind the TDD practice); MoreUnit : Free, but essentially dedicated to help you write the tests; Infinitest : Now free, this plugin