How to list all classes without test in IntelliJ IDEA? - java

How to list all classes without tests in IntelliJ IDEA?
if we already can,
jump from a test and its source
create a test for a class?
Gradle task jacoco helps, and it what I am using, but I still want to know if there is something built-in in Intellij IDEA.

You could run your test suite with code coverage:
https://www.jetbrains.com/help/idea/running-test-with-coverage.html
https://www.jetbrains.com/help/idea/viewing-code-coverage-results.html

Related

Test Runner tab in IntelliJ 2018.3 CE not showing

I'm using IntelliJ 2018.3 CE. I have a java maven project (developed using springboot) in which the JUnit tests have already been written. However, when I try to run the tests, the output is always shown in the default run window, and NOT in the Test Runner Tab. In fact, I cannot make this window pop-up after a running a test.
I have Junit 4.12 in the external libraries of my project (as Maven: junit:junit:4.12). The test folders have been appropriately flagged as test resources.
I presume it has to deal with settings in IntelliJ but even with all the effort in the world, I wasn't able to find what is causing this.
Is someone experiencing the same issue? Or does someone know how to resolve this?
Any help would be very much appreciated.

Can IntelliJ Idea work with maven-failsafe-plugin tests?

According to the maven-failsafe-plugin's convention. integration tests need to be placed under src/it. This is all fine and dandy, but IntelliJ Idea doesn't:
Treat the code in src/it as test code
Let you run these tests through the UI
I have 2017.1.3 and I have also installed the Maven Test Support Plugin. Doesn't Idea support this kind of separation?

Can I run PMD analysis in a Junit test?

I would like to create an automated junit test that passes if my code meets the requirements specified by PMD, and fails if it does not. Is this possible?
It is possible tu run a PMD analysis in a JUnit test. However, there exist PMD plugins for every Java IDE, build and CI tool out there. Are you sure they don't already do what you want to achieve?
If you still want to do it yourself, take a look at the class PMD. It has the static method PMD.doPMD(configuration) which starts the analysis.
The same class also contains the main method in case you want to start it like from the command line.

Showing up JUnit test results from Ant script in Eclipse -- is it possible, at all?

In my attempt to implement a JUnit test suit through Ant, I stumbled across the question of whether it'd be possible to make the suite results show up in the typical Eclipse JUnit window, when run from Eclipse.
Is it possible?
Thanks
You may use Right-Click -> Open With -> JUnit View on the XML result file to achieve this.

JUnit Could not launch the JUnit plug-in tests. why?

First time I am trying Junit and I am following below link:
http://www.vogella.de/articles/JUnit/article.html
When I run my testClass as Run-As-> Junit Test. It says below thing.
Please help me in figure it out.
Could not launch the JUnit plug-in tests because project 'SalesTax'
is not a plug-in project.
SalesTax: Is the Project Name
I suspect you did create an Eclipse 'jUnit Plugin Test' launch configuration which is designed to run Eclipse plugins jUnit tests (in some kind of mocked eclipse environment).
Try to create a simple 'jUnit' launch configuration instead.
Suggestion - Follow the tutorial. type in the (3-line) example "MyClassTest" from the tutorial. Verify that you can get the tutorial working. Post back with any questions about the tutorial.
Once you get one complete example working, end-to-end (your code, your JUnit test code, and successfully building and executing at least one JUnit test in your IDE), then try to get your "SalesTax" project working.
Q: I presume you're using Eclipse, correct? Eclipse 3.7?
PS:
Here's another good tutorial:
http://www.ibm.com/developerworks/java/tutorials/j-junit4/

Categories