Search Results

2
votes

Can I make JUnit more verbose?

Hard to be done. All assert methods are static members of the class Assert, which implies that the RunNotifier (which counts the successful and failed tests) is not within reach. If you don …
1
vote

How can I improve my junit tests

You can use JExample, an extension of JUnit that allows test methods to have return values that are reused by other tests. JExample t …
1
vote

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

There are, to my best knowledge, no available migration tools (yet). What I know is this: Last year, at OOPSLA in Nashville, was a paper about API migration but alas their tools se …
1
vote

JUnit: how to avoid “no runnable methods” in test utils classes

What about adding an empty test method to these classes? public void avoidAnnoyingErrorMessageWhenRunningTestsInAnt() { assertTrue(true); // do nothing; } …
0
votes

Can you or do you write Junit style unit tests without expliciting using ‘assertEquals’, exceptions fail test

I call this "smoke testing" and do it very often. It is like running your engine and assert that there is no smoke, ie no exceptions are thrown. Personally, I consider this good style (but …
2
votes

In Java how can I validate a thrown exception with JUnit?

Looking at the proposed answers, you can really feel the pain of not having closures in Java. IMHO, the most readable solution is ye good old try catch. @Test public void test() { …
1
vote

How to get access to the current JUnitCore to add a listener?

Not from ant's junit task. You best write a main method that runs your test suite "manually". package test; import org.junit.runner.Request; import org.junit.runner.Result …
0
votes

Testing for multiple exceptions with JUnit 4 annotations

This is not possible with the annotation. With JUnit 4.7 you can use the new ExpectedException rule public static class HasExpectedException { @Interceptor …
0
votes

Does JUnit4 testclasses require a public no arg constructor?

Non-static inner classes have a hidden constructor that takes the outer class as argument. If your inner classes dont share state with the outer classes, just make them static. …
3
votes

How to remove the Junit4 from eclipse test runner

You can run an individual testmethod with Junit 4. Just right-click on the method in the outline and choose "run with Junit". …
1
vote

Source code is in JDK 1.4 and JUnit test cases in JDK 1.5

No need for Java 5, as it seems James Carr backported Mockito to Java 4, see http://blog.james-carr.org/2009 …
1
vote

Where can I find good unit testing resources for EJB and J2EE?

EJB out-of-container testing by Erwann "Airone" Wernli …
1
vote

JUnit: Enable assertions in class under test

Alternatively, you may compile your code such that assertions cannot be turned off. Under Java 6, you may use …