0
votes
2answers
15 views
Ant + JUnit4 ClassDefNotFoundException
This bothers me for quite a fewhours now. I've got a Netbeans project (6.7.1). In the project I added test sources, now I would like to do invoke the testing from ant. So I've got the following ant …
0
votes
1answer
9 views
Maven Surefire reports show multiple class entries rather than a suite.
Hello,
I've been asked to configure Maven's surefire report generator to include one entry for the test suite which in turn tests classes A,B and C but instead of seeing this:
A
B
C
MySuite
I see …
0
votes
0answers
17 views
Ant PDE Tests Run with JUnit4
Hi,
I am trying to automate pde tests, using pde-maven-plugin, maven calls ant task. I followed instructions …
0
votes
0answers
38 views
Cannot get FeatureSpec structure to show up in the output when combined with JUnitSuite
I am trying to use Scala's capabilty of running a class with either JUnit or ScalaTest. I took the example given for FeatureSpec and combined it with the example using JUnitSuite. I am having a …
3
votes
1answer
61 views
Why shouly 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 …
0
votes
0answers
31 views
Limitations in JUnit4’s annotations
Uri's answer got me thinking about what limitations JUnit 4 aquired by using annotations instead of a specific class hierarchy and interfaces the way JUnit 3 and earlier did. I'm wondering what …
0
votes
1answer
15 views
Why is my junit test case treated like 3.x one when I extend from junit.framework.TestCase
I am trying to run my test case using junit 4.X runner, but it is treated like 3.x one when I extend from junit.framework.TestCase.
I had to this as the out current test framework base test class …
0
votes
1answer
26 views
Not able to execute tests with @Test annotation when my test extends TestCase(Junit) in Eclipse
Not able to execute tests with @Test annotation when my test extends TestCase(Junit) in Eclipse
It works fine when I am not extending from TestCase(jUnit), but my existing code extends from TestCase …
3
votes
4answers
104 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 …
0
votes
2answers
88 views
Class teardown in junit 3?
We have a lot of integration tests written using JUnit 3, though we're now running them with 4.4. A few of these have a need for a tearDown method that runs after all the tests in the class are …
2
votes
3answers
102 views
why does junit4 not have Assert.assertArrayEquals() for double[]s?
There appear to be Assert.assertArrayEquals() methods in Junit4 for all primitives other than double, e.g.
Assert.assertArrayEquals(int[] expected, int[] actual)
and
…
0
votes
1answer
168 views
SpringJUnit4ClassRunner initialize beans for each test?
The following test illustrates that this test bean is initialized twice by Spring. I'm hoping someone can tell me why this is so, since it should only be once. Here's the test:
import …
0
votes
3answers
96 views
assertArrayEquals(Object[] o1, Object[] o2) cannot be found
My setup:
Netbeans 6.7
Java6
JUnit 4.5 added as the Test libraries
When I try to pass in two class arrays (cast as Object[]) I get the error "cannot find symbol" and my test case will not …
0
votes
2answers
64 views
ejb testing issues with netbeans and openejb
I have created a netbeans 6.7 EnterpriseApplication project with ejb and war modules with a test stateless session ejb with a simple sayHello() method.
I also added the openEjb library in order to …
3
votes
6answers
340 views
Exclude individual JUnit Test methods without modifying the Test class?
Hi all,
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 …
