JUnit is the most common unit testing framework for Java. The latest version, JUnit 4, supports rich annotation-based and parameterized tests.

learn more… | top users | synonyms

227
votes
29answers
34k views

What's the proper way to test a class with private methods using JUnit?

How do I use JUnit to test a class that has internal private methods? It seems bad to change the access modifier for a method just to be able to run a test.
73
votes
6answers
14k views

Why doesn't JUnit provide assertNotEquals methods?

Does anybody know why JUnit 4 provides assertEquals(foo,bar) but not assertNotEqual(foo,bar) methods? It provides assertNotSame (corresponding to assertSame) and assertFalse (corresponding to ...
40
votes
8answers
12k views

Junit vs TestNG

At work we are currently still using Junit3 to run our tests. We have been considering switching over to Junit4 for new tests being written but I have been keeping an eye on TestNG for a while now. ...
37
votes
13answers
11k views

Java: How to test methods that call System.exit()?

I've got a few methods that should call System.exit() on certain inputs. Unfortunately, testing these cases causes JUnit to terminate! Putting the method calls in a new Thread doesn't seem to help, ...
35
votes
6answers
23k views

How to assert that a certain exception is thrown in jUnit4.5 tests

How can use jUnit4.5 idiomatically to test that come code throws an exception? While I can certainly do something like this: @Test public void testFooThrowsIndexOutOfBoundsException() { boolean ...
32
votes
2answers
9k views

JUnit test for System.out.println()

I need to write JUnit tests for an old application that's poorly designed and is writing a lot of error messages to standard output. When the getResponse(String request) method behaves correctly it ...
32
votes
6answers
4k views

differences between 2 JUnit Assert classes

I've noticed that the JUnit framework contains 2 Assert classes (in different packages, obviously) and the methods on each appear to be very similar. Can anybody explain why this is? The classes I'm ...
28
votes
12answers
13k views

Injecting Mockito mocks into a Spring bean

I would like to inject a Mockito mock object into a Spring (3+) bean for the purposes of unit testing with JUnit. My bean dependencies are currently injected by using the @Autowired annotation on ...
28
votes
4answers
6k views

JUnit test with dynamic number of tests

In our project I have several JUnit tests that e.g. take every file from a directory and run a test on it. If I implement a testEveryFileInDirectory method in the TestCase this shows up as only one ...
24
votes
7answers
8k views

Get name of currently executing test in JUnit 4

In JUnit 3, I could get the name of the currently running test like this: public class MyTest extends TestCase { public void testSomething() { System.out.println("Current test is " + ...
22
votes
5answers
11k views

Spec. for JUnit XML Output

Where can I find the specification of JUnit's XML output. My goal is to write a UnitTest++ XML reporter which produced JUnit like output. See: "Unable to get hudson to parse JUnit test output XML" ...
21
votes
2answers
3k views

Conditionally ignoring tests in JUnit 4

OK, so the @Ignore annotation is good for marking that a test case shouldn't be run. However, sometimes I want to ignore a test based on runtime information. An example might be if I have a ...
21
votes
11answers
5k views

How to run concurrency unit test?

How to use junit to run concurrency test? Let's say I have a class public class MessageBoard { public synchronized void postMessage(String message) { .... } public void ...
20
votes
8answers
5k views

Change test name of parameterized tests?

Is there a way to set my own custom test case name when using Parameterized tests in Junit4? I'd like to change the default "[Test class].runTest[n]" to something meaningful...
20
votes
9answers
15k views

Running Eclipse Junit Plugin tests with Junit 4.4 or newer — why aren't tests detected?

I need to use JUnit 4.4 (or newer) in a set of eclipse plugin tests, but I've run into the following problem: Tests are not detected when running with the junit 4.4 or 4.5 bundles from springsource ...
19
votes
1answer
425 views

How to get Eclipse to jump to failed JUnit test when test is not a Java method

I've got a nive bridge that allows me to run JBehave tests through JUnit with deeper integration than out of the box from JBehave - my JUnit hierarchy now shows each story file and the scenarios under ...
19
votes
14answers
1k views

Does reflection breaks the idea of private methods, because private methods can be access outside of the class?

Does reflection breaks the idea of private methods, because private methods can be access outside of the class? (Maybe I dont understand the meaning of reflection or miss something else, please write) ...
19
votes
6answers
3k views

Why must jUnit's fixtureSetup be static?

I marked a method with jUnit's @BeforeClass annotation, and got this exception saying it must be static. What's the rationale? This forces all my init to be on static fields, for no good reason as far ...
19
votes
8answers
11k views

Running junit tests in parallel?

I'm using junit 4.4 and maven and I have a large number of long-running integration tests. When it comes to parallellizing test suites there are a few solutions that allow me to run each test method ...
18
votes
4answers
7k views

Junit4 Test Suites

How do I create test suites with Junit4? All the documentation I've seen doesn't seem to be working for me? And if I use the eclipse wizard it doesn't give me an option to select any of the test ...
17
votes
5answers
2k views

How can I specifiy JUnit test dependencies?

Our toolkit has over 15000 JUnit tests, and many tests are known to fail if some other test fails. For example, if the method X.foo() uses functionality from Y.bar() and YTest.testBar() fails, then ...
17
votes
7answers
19k views

Android Eclipse Plugin: Instrumentation Test Runner not specified

I'm getting this error when trying to run unit tests from Eclipse with an Android Project. The list of Instrumentation Test Runners is empty in the Android preferences. [2009-06-17 23:57:51 - ...
17
votes
4answers
13k views

Where do I configure log4j in a JUnit test class?

Looking at the last JUnit test case I wrote, I called log4j's BasicConfigurator.configure() method inside the class constructor. That worked fine for running just that single class from Eclipse's ...
17
votes
9answers
7k views

Before and After Suite execution hook in jUnit 4.x

I'm trying to preform setup and teardown for a set of integration tests, using jUnit 4.4 to execute the tests. The teardown needs to be run reliably. I'm having other problems with TestNG, so I'm ...
16
votes
4answers
3k views

Checking that a List is not empty in Hamcrest

I was wondering if anyone knew of a way to check if a List is empty using assertThat() and Matchers? Best way I could see just use JUnit: assertFalse(list.isEmpty()); But I was hoping that there ...
16
votes
10answers
8k views

Unit testing a Hibernate driven application?

This may be a naive question, but I am new to both the junit and hibernate frameworks and I was wondering what the best way to go about unit testing an application that is largely calls to hibernate, ...
15
votes
4answers
3k views

How to run all tests belonging to a certain Category in JUnit 4

JUnit 4.8 contains a nice new feature called "Categories" that allows you to group certain kinds of tests together. This is very useful, e.g. to have separate test runs for slow and fast tests. I know ...
15
votes
10answers
4k views

Is there a Java unit-test framework that auto-tests getters and setters?

There is a well-known debate in Java (and other communities, I'm sure) whether or not trivial getter/setter methods should be tested. Usually, this is with respect to code coverage. Let's agree that ...
14
votes
1answer
4k views

JUnit XML Format Specification that Hudson supports

I have Hudson as continuous integration server and I want to use option 'Publish JUnit test result report'. But I don't use xUnit tools for testing, instead of that i have shell scripts which run ...
14
votes
3answers
3k views

Why showily I use Hamcrest-Matcher and assertThat() instead of traditional assertXXX()-Methods

When I look at the examples in the Assert class JavaDoc assertThat("Help! Integers don't work", 0, is(1)); // fails: // failure message: // Help! Integers don't work // expected: is <1> // got ...
14
votes
5answers
3k views

JUnit theory for hashCode/equals contract

The following class serve as generic tester for equals/hashCode contract. It is a part of a home grown testing framework. What do you think about? How can I (strong) test this class? It is a good ...
14
votes
6answers
4k views

Unit tests vs integration tests with Spring

I'm working on a Spring MVC project, and I have unit tests for all of the various components in the source tree. For example, if I have a controller HomeController, which needs to have a LoginService ...
13
votes
3answers
4k views

spring 3 autowiring and junit testing

My code: @Component public class A { @Autowired private B b; public void method() {} } public interface X {...} @Component public class B implements X { ... } I want to test in ...
13
votes
4answers
2k views

Junit: splitting integration test and Unit tests

I've inherited a load of Junit test, but these tests (apart from most not working) are a mixture of actual unit test and integration tests (requiring external systems, db etc). So I'm trying to think ...
13
votes
14answers
6k views

junit & java : testing non-public methods

I'm new to doing serious unit testing as well as junit. JUnit will only test those methods in my class that are public. How do I do junit testing on the ones that are not (i.e., private, protected)? ...
13
votes
10answers
5k views

How do I unit test jdbc code in java?

I'd like to write some unit tests for some code that connects to a database, runs one or more queries, and then processes the results. (Without actually using a database) Another developer here wrote ...
13
votes
5answers
4k views

Best way to automagically migrate tests from JUnit 3 to JUnit 4?

I have a bunch of JUnit 3 classes which extend TestCase and would like to automatically migrate them to be JUnit4 tests with annotations such as @Before, @After, @Test, etc. Any tool out there to do ...
13
votes
7answers
13k views

How to set a long Java classpath in MSDOS/Windows?

I'm trying to run a particular JUnit test by hand on a Windows XP command line, which has an unusually high number of elements in the class path. I've tried several variations, such as: set ...
13
votes
5answers
2k views

Organization of JUnit tests in projects

What would you consider best practice for organizing JUnit tests in a project, and why? For example, do you keep your tests next to the classes they test? Do you put them in a separate but parallel ...
12
votes
5answers
318 views

JUnit test report enrichment with JavaDoc

For a customer we need to generate detailed test reports for integration tests which not only show, that everything is green, but also what the test did. My colleagues and I are lazy guys and we do ...
12
votes
2answers
7k views

Set System Property With Spring Configuration File

Configuration: Spring 2.5, Junit 4, Log4j The log4j file location is specified from a system property ${log.location} At runtime, system property set with -D java option. All is well. Problem / ...
12
votes
2answers
2k views

IntelliJ IDEA with Junit 4.7 “!!! JUnit version 3.8 or later expected:”

When I attempt to run the following test in IntelliJ IDEA I get the message: !!! JUnit version 3.8 or later expected: It should be noted that this is an Android project I am working on in ...
12
votes
4answers
3k views

Compare two JSON objects in Java

I'm looking for a JSON paring library that supports comparing two JSON objects ignoring child order, specifically for unit testing JSON returning from a web service against an expected value. Do any ...
12
votes
8answers
7k views

“Forked Java VM exited abnormally” error from junit tests

I have a java junit test that passes when run alone on a development machine. We also have a hudson job which runs all the tests, invoked via ant, on a Mac OS X 10.4 node with Java 1.5. The test was ...
12
votes
4answers
11k views

JPA-based JUnit Test Best Practices

This is a bit of an odd question, but it has been bothering me for a few months now. I have built a JPA-based web application using Wicket + Hibernate (built with Maven), and want to test the DAO ...
12
votes
2answers
3k views

CollectionAssert in jUnit?

Is there a jUnit parallel to NUnit's CollectionAssert?
12
votes
6answers
15k views

When do Java generics require <? extends T> instead of <T> and is there any downside of switching?

Given the following example (using JUnit with Hamcrest matchers) Map<String, Class<? extends Serializable>> expected = null; Map<String, Class<java.util.Date>> result ...
12
votes
5answers
2k views

How well do Eclipse and Netbeans coexist?

I would like to have both Eclipse and Netbeans (with JUnit) installed on one system, so I can be somewhat familiar with both. Besides GUI development (see "Using both Eclipse and Netbeans"), are ...
11
votes
3answers
167 views

Is there a way to access private plsql procedures for testing purposes?

I'm working on a project with a lot of plsql code and would like to add more specific unit-tests to our codebase. Some of the procedures/functions I like to test aren't in the package spec and I have ...
11
votes
1answer
3k views

FragmentActivity can not be tested via ActivityInstrumentationTestCase2

I have a problem executing android unit tests against android applications that utilize the recently released Fragment support API. When the test is run against a FragmentActivity the following error ...

1 2 3 4 5 51