infinitest is a continuous test runner for Java.
Questions tagged [infinitest]
41 questions
22
votes
1 answer
eclipse + m2e + junit + infinitest + eclemma?
I have Eclipse for Java Developer 4.3 with m2e, eclemma, infinitest. My project uses Eclipse m2e with junit 4.11.
My intention is to have coverage info updated every time infinitest re-runs the tests affected by last save. Is it possible?
At the…

Tair
- 3,779
- 2
- 20
- 33
13
votes
1 answer
Is it possible to set tests to continuously run on Android Studio?
I'd like to know if it is possible to do continuous testing on Android Studio.
I've found the Infinitest tool for Eclipse/IntelliJ but couldn't find any tools for Android Studio.
Since Android Studio is based on IntelliJ I thought that there could…

Danilo Prado
- 2,260
- 1
- 13
- 16
11
votes
4 answers
Karma for Visual Studio?
I'm a big fan of continuous testing products like Infinitest. Lately I've been doing more JavaScript development, and was looking for something similar for Visua Studio that will run my Jasmine tests immediately after saving a file. Mighty Moose…

roufamatic
- 18,187
- 7
- 57
- 86
10
votes
4 answers
How do I do continuous testing in .NET?
I'm using Infinitest for continuous testing when I do java development and i really miss the instant feedback when I develop in .nET
How do I do continuous testing in C# & .NET?
EDIT: I'm not looking for continuous integration, like CruiseControl,…

s3v1
- 2,923
- 2
- 33
- 25
8
votes
3 answers
Is edit-triggered testing the next step?
I have just read Michael C. Feathers great book Working Effectively with Legacy Code, the bible of introducing tests to legacy code. In this book he describes something called Edit-triggered testing:
If it isn't out by the time this book is…

BengtBe
- 4,465
- 1
- 26
- 19
5
votes
4 answers
Eclipse Infinitest not running at all
I've tried to get the Infinitest Plugin for Eclipse to automatically run my tests. According to the documentation, it hooks into all @Test annotated tests and runs the test class, as soon as the system under test class is changed.
The plugin was…

Lars
- 5,757
- 4
- 25
- 55
5
votes
3 answers
How do I use continuous integration with an Eclipse project?
I've been using maven2 and hudson for a while to do my continuous integration, but I find that Eclipse and Maven do not play well together. Sure there's a plugin, but it's cranky to mash the maven project into something that eclipse likes and the…

s3v1
- 2,923
- 2
- 33
- 25
4
votes
2 answers
Is it possible to specify which tests to choose from?
We have a vast amount of tests. We would like infinitest only to choose between tests that have been included in an .xml-file (i.e. a TestNG suite).
We do not want to put the annotation groups = { "shouldbetested" } in every testcase but rather feed…

Susanne Siverland
- 197
- 11
4
votes
2 answers
Infinitest and IDEA 10
Has anyone managed to get the new Infinitest open source version running in IntelliJ IDEA 10?

Theresia Sofia Snow
- 599
- 1
- 5
- 18
4
votes
0 answers
Infinitest with Eclipse 4 (Juno)
All,
I've been trying to configure Infinitest (http://infinitest.github.com/) with Eclipse 4.2 (Juno). It seems to install correctly, however I can not get the status bar to show up and display information about the tests I've run. Any ideas?
Thanks…

Joe
- 1,534
- 9
- 19
3
votes
1 answer
Problem with Infinitest
I'm using infinitest the eclipse plug-in. but sometimes it just do not work.
I have a test for a method a(). The method a() calls method b() which calls method c(). if I change the method b() it runs the test for the method a. but it doesn't trigger…

fastcodejava
- 39,895
- 28
- 133
- 186
3
votes
1 answer
Eclipse: infinitest vs. JUnit: character encoding
I'm using infinitest in Eclipse and I have a strange phenomenon in connection with JUnit.
I have code that uses org.apache.http.HttpResponse.getEntity() and org.apache.http.entity.StringEntity. The JUnit test looks like this:
@Test
public void…

sjngm
- 12,423
- 14
- 84
- 114
3
votes
0 answers
Is there a Visual Studio Code equivalent to eclipse's Infinitest?
I would like to do (Java) TDD in Visual Studio Code. I have experience with this in eclipse using JUnit4 and Infinitest.
JUnit4 is available for VS Code, but I would also like to have the Infinitest functionality (continuous test running), however I…

tim-kt
- 304
- 5
- 17
3
votes
1 answer
JUnit displays 0.4 sec, Infinitest a Slow Test Warning for a 4 ms test
I have this test:
@Test
public void findsPackageClasses() throws ClassNotFoundException, IOException {
final long startTime = System.currentTimeMillis();
Class>[] classes =…

Steve
- 31
- 4
3
votes
0 answers
Infinitest fails but Maven works
I have Sprint Tool Suite 3.3 and the latest version of Infinitest installed. According to Infinitest, many of my classes have errors, but yet Maven builds just fine. Here is an example of some errors that the Problems tab in STS…

sonoerin
- 5,015
- 23
- 75
- 132