Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

IntelliJ - Failed to start: 0 passed, 1 not started

Just been playing around for the first time with IntelliJ IDEA Community edition, first time I have worked with it so if I'm missing something, please excuse me.

I have a bunch of unit tests which I run, however, when running them in IntelliJ (with the standard setup out of the box), I intermittently get the following error in the console:

03:14:17 Failed to start: 58 passed, 1 not started

I have searched the web but to no avail. If I run just the test that failed, it may or may not print out a similar error:

03:19:54 Failed to start: 0 passed, 1 not started

If I keep trying, eventually it works and tells me that all of my tests have passed.

The image is not the error as an exclamation mark, it is a different error icon (error icon), which I do not recognise. The error in Event Log window appears as red text.

It always appears to happen with only one test and it is always the same test for any given set of tests. I.E. In a different project, the same issue also appears, but for a different test (but it's always the same one in each project or set of tests).

One more thing to note is that this ONLY happens when debugging and not when running, so it may be something to do with connecting the debugger?

It all works perfectly fine with Eclipse.

Any ideas what could be causing this?

like image 903
Blueberry Avatar asked Jun 23 '12 02:06

Blueberry


People also ask

Can not run test in IntelliJ?

Check in Project settings -> Modules that you test package is marked as Tests. Right click on the test class name either in the code window or in the project panel, and select Run <classname>. If you don't see the run menu in the popup then you haven't selected a test or you don't have junit plugin installed.

What is Junits?

What Is JUnit? JUnit is a Java unit testing framework that's one of the best test methods for regression testing. An open-source framework, it is used to write and run repeatable automated tests.

How do I get TestNG report in IntelliJ?

To be able to run a TestNG test suite, create a run configuration for this suite: From the main menu, select Run | Edit Configurations. and from the list that opens, select TestNG. Name the new configuration.


3 Answers

The issue for me is Failed to start: 1, passed: 0 . I'm using Spring Boot 2.4.0 with Junit5 to test the Controller Class. I just commented out the version tag in the junit-jupiter-engine dependency. Then it worked. Really strange. It might helpful for someone.

like image 187
Mohan Avatar answered Nov 01 '22 22:11

Mohan


I got the same error. It was something weird sent to System.out that made IntellJ IDEA test "not started".

like image 28
Bouil Avatar answered Nov 01 '22 22:11

Bouil


I've created a ticket for IntelliJ IDEA, you can vote for it if you still encounter this problem.

like image 1
grundic Avatar answered Nov 02 '22 00:11

grundic