2
votes
3answers
45 views
JUnit java.lang.OutOfMemoryError when running all tests in a package
When loading all unit tests in a package, the make task throws a java.lang.OutOfMemoryError: Java heap space error.
If I run all the tests in each subpackage, though, all tests lo …
2
votes
2answers
41 views
Using Spring JUnit4 and JMock together
When I run my Junit4 tests now I use the @RunWith(SpringJUnit4ClassRunner.class) annotation which allows me to inject Spring Beans into my test class.
I would like to use the JMoc …
1
vote
1answer
51 views
Is there a problem-free way to run Scala 2.7.7 unit tests in Eclipse integrated nicely?
I'm developing Scala code using Eclipse, often when I run tests I get this error:
No tests found with test runner 'JUnit 3'.
Environment:
Eclipse for Java Developers, 3.5.1
Sca …
2
votes
4answers
62 views
+100
Where can I find good unit testing resources for EJB and J2EE?
Which online resources, tutorials or books can you recommended to get started with unit testing J2EE / EJB3 applications?
So far I have found ejb3unit, Jakarta Cactus and the Mave …
2
votes
4answers
91 views
Applying one test to two separate classes
I have two different classes that share a common interface. Although the functionality is the same they work very differently internally. So naturally I want to test them both.
…
0
votes
2answers
23 views
JUnit Result Aggregation
I'm familiar with aggregating junit test results within a single build, but are there any tools that let you aggregate results across different builds?
I'd like to discover which …
2
votes
2answers
23 views
Embedded jetty ServletTester serving single static file
I'm unit testing with jetty and I want to serve not only my servlet under test but a static page as well. The static page is needed by my application. I'm initializing jetty like t …
0
votes
1answer
47 views
Custom JUnit Report?
I am using the ant tasks 'junit' and 'junitreport' to run my JUnit Tests and generate a report at the end (=> "Unit Test Results").
Is it there some easy way to extend this output …
0
votes
1answer
12 views
Why do certain JUnit tests not get executed in NetBeans and/or Hudson?
When I right click a project in NetBeans and choose Test, certain unit tests aren't running. If I right click the .java file that contains the unit tests and choose Test File, the …
1
vote
1answer
120 views
Where can I find a complete Maven Cargo plugin example for EJB tests?
For tests of some small JBoss enterprise apps I would like to use JUnit, and the Maven Cargo plugin. (I know that there is also JSFUnit but first I would like to take a closer look …
1
vote
1answer
30 views
SpringJunit4ClassRunner — can I change the lifetime of the injected resources?
By experiment, I find that SpringJunit4ClassRunner treats the context and its beans as 'class scope' in the JUnit sense of scope. It inititializes my beans once for the entire set …
0
votes
1answer
103 views
how to integration test a DAO built with spring + iBatis
I asked a question, title of which might have been misleading so I'm going to try to ask the question again with much detailed stuff. (i know question seems long but please bear wi …
0
votes
4answers
104 views
Is this Spring training useful?
We have a Spring + Ibatis based J2EE app. I planned to wrap around our DAO's (which call iBatis templates ...by getting spring beans) with test cases. I don't have much experience …
0
votes
2answers
46 views
Grails: How do you unit test a command object with a service injected into it
I am trying to test a Controller
that has a Command object with data binding.
The Command Object has a Service injected into it.
But When I try test the command object the inject …
0
votes
1answer
26 views
com iplanet ias JAR
I've been struggling with this for past couple of days. I am trying to test a DAO outside the container but while running the test case I am getting the error:
Error creating …
