Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a Java project with a lot of classes. Now I want to get a list with all jUnit tests. My idea was to use grep for that.

So I navigated to the root folder, and use the following command:

grep junit -R ./ > output.txt

But obviously this isn't correct. So my question is. How is the correct command? And are there ways that are more easier to find jUnit tests?

share|improve this question

4 Answers

up vote 1 down vote accepted

You'd want:

grep -r junit *

But you need to be a little careful with that, as it'll go through all files, include jars.

Better to use find or ack:

ack --java -cl '@Test' # Print filenames with, and # occurences of, @Test annotations

Or more boringly:

find . -name *.java | xargs grep junit
ack --java junit # Or, more accurately:
ack --java 'import\s.*?junit.*'

(If you're not using ack, for some stuff, it's just awesome.)

share|improve this answer
find . -name *.java | egrep -R @Test . | cut -f1 -d" " | cut -f1 -d: > _1

If you've got junit 3 ones too, you could then run:

find . -name *Test.java >> _1
share|improve this answer
Thanks. Can you explain the first line a little bit? – RoflcoptrException Nov 10 '11 at 22:03
@Roflcoptr It's grepping for @Test annotations and pulling the filename out. Doesn't work on OSX, though, get repeated filenames w/ no contextual info. One reason I like ack :) – Dave Newton Nov 10 '11 at 22:11
find . -name "*.java" | xargs grep -il "junit"

In english: Starting at the current directory, find all files that end in ".java".
For each file found, do a case-insensitive search for "junit".
If "junit" is found, print only the file name.

share|improve this answer
1  
Hmm... I wonder why the downvote. – Tim Bender Nov 10 '11 at 23:00

I would grep for "extends TestCase" - results likely are going to be more reliable

Any class that extends TestCase is automatically a JUnit class.

Depending on whether you use jUnit 3 or 4 you may not have @Test annotations

share|improve this answer
Yes, but JUnit4 tests don't extend TestCase – Matthew Farwell Nov 10 '11 at 23:22
@MatthewFarwell, really? can you post a reference confirming this? I was under impression that all jUnit tests (by definition) extend TestCase – Jam Nov 13 '11 at 20:17
TestCase is part of JUnit3, it still works with JUnit4, but isn't necessary. Try it. – Matthew Farwell Nov 14 '11 at 10:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.