Tagged Questions

Version 4 of the popular Junit Java Unit testing framework

learn more… | top users | synonyms

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...
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 ...
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 ...
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 ...
11
votes
1answer
2k views

Can't run JUnit 4 test case in eclipse

I am new to Java and am trying to run a unit test on a class I am writing. Eclipse (3.5) created the unit test class for me and added Junit4 to my class path. My Class: public class DistanceUtil { ...
10
votes
3answers
464 views

Difference between JUnit Theories and Parameterized Tests

What is the difference between a Theory and a Parameterized test? I'm not interested in implementation differences when creating the test classes, just when you would choose one over the other.
8
votes
2answers
716 views

JUnit - assertSame

Can someone tell me why assertSame() do fail when I use values > 127? import static org.junit.Assert.*; ... @Test public void StationTest1() { .. ...
8
votes
1answer
1k views

Does new JUnit 4.8.1 @Category render test suites almost obsolete?

Given question 'How to run all tests belonging to a certain Category?' and the answer would the following approach be better for test organization? define master test suite that contains all tests ...
7
votes
1answer
2k views

Maven does not find JUnit tests to run

I have a simple program for which maven compiles it and its tests fine, but when I run mvn test it does not run any tests (under TETSTs header says There are no tests to run.). I've recreated this ...
7
votes
6answers
2k views

setUp/tearDown (@Before/@After) why we need them in JUnit?

I believe that we are all know that setUp (@Before) will execute before any test method and tearDown(@After) will execute after test method. Also we know that Junit will create one instance of Test ...
6
votes
2answers
172 views

Integration-Manager Git Workflow using Jenkins/Hudson

I'm trying to implement a modified Integration-Manager workflow similar to what's described in ProGit. Instead of an integration manager performing the merges, I want developers to merge locally ...
6
votes
1answer
500 views

How to run all JUnit tests in a category/suite with Ant?

I'm using JUnit Categories and ClassPathSuite in a setup similar to that described in this answer. To recap: public interface FastTests { } @RunWith(Categories.class) ...
6
votes
0answers
253 views

How can I run a custom JUnit4 Runner on JUnit3 test classes with Ant?

We have test classes which are built on Spring 2.0.8's AbstractTransactionalDataSourceSpringContextTests. There are a huge number of these, all of which are written in JUnit3 style. In order to use ...
6
votes
5answers
3k views

How to execute JUnit and TestNG tests in same project using maven-surefire-plugin?

Right now I have both type of tests but when I say "mvn test" it only executes TestNG tests and not Junit. I want to execute both one after another. Any Idea ?
6
votes
4answers
1k views

How to set an expected exception using Scala and JUnit 4

I want to set an expected exception for a JUnit 4 test using Scala. I am current doing something similar to the following: @Test(expected=classOf[NullPointerException]) def someTest() = { // ...
6
votes
4answers
7k views

Running “pure” JUnit 4 tests using ant

We have migrated to both JUnit 4 and ant 1.7 The tests runs fine in eclipse, but the annotations are ignored when running the tests using ant. According to the Ant junit task documentation: It ...
6
votes
2answers
3k views

How to get Junit 4 to ignore a Base Test Class?

I have a base class for many tests that has some helper methods they all need. It does not by itself have any tests on it, but JUnit (in eclipse) is invoking the test runner on it and complaining ...
5
votes
1answer
137 views

How can I make JUnit 4.8 run code after a failed test, but before any @After methods?

I'm driving a suite of Selenium tests (actually WebDriver-backed Selenium) using JUnit 4.8.2. I'd like the tests to automatically take a screenshot of the browser as soon as the test fails an ...
5
votes
3answers
313 views

JUnit - one test case per method, or multiple test cases per method?

Would you recommend doing any grouping of test cases within @Test methods, or have one @Test method per test scenario? To explain on example, let's suppose that we have various test scenarios for ...
5
votes
6answers
102 views

java testing: accelerate time to test timeouts?

I have an app that manages turns in a game, it's fairly complex and it has a lot of timers that generate timeouts.. since they interoperate a lot it's difficult to be sure everything's working right ...
5
votes
1answer
1k views

Specifying an order to junit 4 tests at the Method level (not class level)

I know this is bad practice, but it needs to be done, or I'll need to switch to testng. Is there a way, similar to JUnit 3's testSuite, to specify the order of the tests to be run in a class? Thanks ...
5
votes
1answer
1k views

Running each JUnit test in a separate JVM in Eclipse?

I have a project with nearly 500 individual tests in around 200 test classes. Some of these tests don't do a great job of tearing down their own state after they're finished, and in Eclipse this ...
5
votes
7answers
3k views

How do I programmatically run all the JUnit tests in my Java application?

From Eclipse I can easily run all the JUnit tests in my application. I would like to be able to run the tests on target systems from the application jar, without Eclipse (or Ant or Maven or any other ...
5
votes
4answers
3k views

Run all tests in Junit 4

I want to be able to run all tests in a project programmatically. I know Eclipse has a "Run as JUnit test" configuration which somehow grabs all the tests in a project and run them. Is there any way ...
5
votes
4answers
2k views

Is it possible to programmatically generate JUnit test cases and suites?

I have to write a very large test suite for a complex set of business rules that are currently captured in several tabular forms (e.g., if parameters X Y Z are such and such, the value should be ...
5
votes
4answers
4k views

@parameters in Junit 4

Can I have more than one method with @Parameters in junit test class which is running with Parameterized class ? @RunWith(value = Parameterized.class) public class JunitTest6 { private String str; ...
5
votes
2answers
1k views

JUnit expected tag not working as expected

I have the following test case in eclipse, using JUnit 4 which is refusing to pass. What could be wrong? @Test(expected = IllegalArgumentException.class) public void testIAE() { throw new ...
5
votes
4answers
2k views

Cause of an unexpected behaviour using JUnit 4's expected exception mechanism?

I am trying to test that a particular method throws an expected exception from a method. As per JUnit4 documentation and this answer I wrote the test as: @Test(expected=CannotUndoException.class) ...
4
votes
4answers
68 views

Unit testing finally blocks in JAVA

While reviewing my code coverage i noticed a lot of Unit tests fail to check finally blocks which try to close open InputStreams in finally blocks. One Example excerpt is: try { f = new ...
4
votes
2answers
91 views

Is there any way to make the Embedded EJB container boot faster?

I'm doing my first Java EE web application using glassfish and netbeans. When I create a unit test that requires the embedded EJB Container it can take around 30s to load. I thought that was ...
4
votes
1answer
65 views

How to get clear report for parameterized Junit-tests while run through ANT?

I have a JUnit test, which uses the Parameterized runner. I have two parameters to be passed (country names) Once this Junit runs in the HTML report for each parameter it gives the result. But it ...
4
votes
4answers
87 views

JUnit @Ignore all other tests (@IgnoreOther ?)

I'm testing extensively with JUnit and sometimes - while debugging my code - I want (temporary) only run a single @Test of my @RunWith(Arquillian.class) test class. Currently I'm adding a @Ignore to ...
4
votes
3answers
515 views

Spring JUnit Test Error

I am receiving the following error when I attempt to run my Spring JUnit test. I am just trying to get familiar with creating JUnits using the Spring Framework. JUnit Class: package ...
4
votes
2answers
286 views

Spring 3.0 junit test DispatcherServlet

I am trying to test my application with junit. Therefore I've setup the following class: @RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(locations = ...
4
votes
4answers
85 views

Counting method invocations in Unit tests

What is the best way to count method invocations in a Unit Test. Do any of the testing frameworks allow that?
4
votes
2answers
67 views

Unit Testing method which uses class which is not in classpath

I have a method which is used to check if the given class is instance of perticular type. Say for example myClass is an instance of DBClass I want to return true. And the DBClass is dynamically ...
4
votes
1answer
585 views

ScalaTest and Maven: getting started

I have a Maven/Java project I've been working on for years, and I wanted to take JavaPosse's advice and start writing my tests in Scala. I've written a few tests following ScalaTest's JUnit4 quick ...
4
votes
4answers
233 views

how to mock class which calls singleton class using junit

I would like to test a method from class1 which calls the singleton class getInstance: Class ivDomain { public String method1() { id=Singleton.getInstance().generateId() ... ...
4
votes
2answers
796 views

Robolectric+Eclipse Can't find resources?

I just configured a test project for my Android app to use Robolectric. I followed the Eclipse Quick Start. An exception is raised executing my simple very first test. java.lang.RuntimeException: ...
4
votes
3answers
4k views

How to configure log4j.properties for SpringJUnit4ClassRunner?

Suddenly this happens during the jUnit test. Everything was working, I wrote new tests and this happened. If I revert it, it didn't go away. Why is that? log4j:WARN No appenders could be found for ...
4
votes
1answer
706 views

Spring JUnit4 manual-/auto-wiring dilemma

I ran into an issue that can only be explained with my fundamental lack of understanding of Spring's IoC container facilities and context setup, so I would ask for clarification regarding this. Just ...
4
votes
3answers
753 views

Run JUnit Test suite from command line

How do I run a Junit 4.8.1 Test suite from command line ? Also I want to use the categories introduces with JUnit 4.8 , is there a way where I can specify from command line the category which I want ...
4
votes
3answers
2k views

How do I Dynamically create a Test Suite in JUnit 4?

I would like to create a junit test suite using JUnit 4 where the names of the test classes to be included are not known until the test suite is run. In JUnit 3 I could do this: public final class ...
4
votes
6answers
3k views

How to configure IntelliJ for running test with JUnit 4?

Should be simple but I couldn't figure it out. When running my unit test inside IntelliJ, I could not find a way to tell IntelliJ-9.0 that it should use JUnit4 instead of JUnit3. When a test fails, ...
4
votes
2answers
4k views

Easy to get a test file into JUnit

Can somebody suggest an easy way to get a reference to a file as a String/InputStream/File/etc type object in a junit test class? Obviously I could paste the file (xml in this case) in as a giant ...
4
votes
2answers
1k views

How do i assert my exception message with JUNIT Test annotation?

i have written a few junits with @Test annotation. If my test method throws a checked exception and if i want to assert the message along with the exception, is there a way to do so with JUNIT @Test ...
4
votes
1answer
5k views

Maven 2 Not Running Junit 4 Tests

I'm having an issue getting surefire to run Junit4 tests. This same issue was reported in http://stackoverflow.com/questions/2021771?sort=newest#sort-top but the solution there was to removed the ...
4
votes
2answers
2k views

Upgrading to JUnit4 and keeping legacy JUnit 3 tests and test suites by running them together

I was surprised not to find the answer so far. If I am missing something basic I will be more than happy to know that. There is a large legacy code base that was upgraded to Java 6 (from 1.4). Large ...
4
votes
6answers
4k views

Exclude individual JUnit Test methods without modifying the Test class?

I'm currently re-using JUnit 4 tests from another project against my code. I obtain them directly from the other project's repository as part of my automated Ant build. This is great, as it ensures I ...
4
votes
2answers
3k views

Junit SuiteClasses with a static list of classes

SuiteClasses will work just fine with a list of classes like {Test1.class,Test2.class}, but when I try to generate a static list of classes, it says incompatible types: required ...

1 2 3 4 5 8