Tagged Questions

22
votes
6answers
11k views

How do I get my Maven Integration tests to run

I have a maven2 multi-module project and in each of my child modules I have JUnit tests that are named *Test.java and *Integration.java for unit tests and integration tests respectively. When I ...
11
votes
2answers
260 views

Changing order of locations on classpath to be loaded up by surefire-plugin

Does anybody know how to change it ? I mean from target/test-classes ... target/classes .... maven dependencies to target/test-classes ... maven dependencies .... target/classes It relates ...
11
votes
6answers
5k views

Surefire is not picking up Junit 4 tests

For some reason I cannot get Maven 2 Surefire plugin to execute JUnit 4 test class. public class SimpleTest { @org.junit.Test public void simple() { System.out.println("foo"); } } ...
8
votes
3answers
3k views

Is there a decent HTML Junit report plugin for Maven?

I find the surefire-report plug-in very unsuitable to my working style. I clean the project all the time and I don't want to spend 5 min to rebuild the whole site every time I want to look at the test ...
7
votes
2answers
897 views

How to: Run maven integration tests against a test environment (database)

I'm using maven and the maven-failsafe-plugin to start up jetty during the integration-test lifecycle phase. I then execute a number of (*IT.java) junit tests against my running webapp. This is ...
5
votes
1answer
210 views

How to output exception track traces to the console of a failed test in maven

I'm running a single test from Maven: mvn test -Dtest=TestCircle If the test fails, Maven outputs the exceptions in /target/... folder. Is there a way to tell Maven that this exception should be ...
3
votes
2answers
86 views

JUnit test inheritance doesn't work

public abstract class GenericTests<T extends Number> { protected abstract T getT(); @Test public void test1() { getT(); } } public class ConcreteTests1 extends ...
3
votes
1answer
92 views

Debugging maven tests with netbeans 6.9.1?

I have a maven project in netbeans 6.9.1, in there a junit 4.4 test class. In netbeans context menu I can "clean and build" my project and in output I can see, that my test class was found and run by ...
3
votes
3answers
1k views

Running single test class or group with Surefire and TestNG

I want to run single test class from command line using Maven and TestNG Things that doesn't work: mvn -Dtest=ClassName test I have defined groups in pom.xml, and this class isn't in one of those ...
3
votes
6answers
3k views

JUnit tests pass in Eclipse but fail in Maven Surefire

I have written some JUnit tests using JUnit 4 and spring-test libraries. When I run the tests inside Eclipse then run fine and pass. But when I run them using Maven (during the build process), they ...
2
votes
2answers
185 views

Running JUnit 4 Tests Parallel With FailSafe & SureFire plugins

We have a profile created in maven to run our Selenium junit4 type tests and below is the snippet of it without the executions tag. <profile> <id>selenium-tests</id> <build> ...
2
votes
1answer
40 views

Does anyone use surefire POJO tests?

Does anyone actually use maven's POJO test feature instead of JUnit/TestNG? http://maven.apache.org/plugins/maven-surefire-plugin/examples/pojo-test.html If so what for / why?
2
votes
6answers
231 views

Maven packaging with out test

I am new to Maven. I am trying to package my project. But, it automatically runs the tests. The tests insert some content in the database. This is not what I want, I need to avoid running tests while ...
2
votes
1answer
137 views

Does Maven Surefire execute test cases sequentially by default?

This is a follow up to this question which I realized when I dug deeper into my research: Is it reasonable to suppose that the Maven Surefire plugin executes test cases sequentially by default: a ...
2
votes
1answer
3k views

maven-surefire-report-plugin 2.8 error: org.apache.maven.doxia.siterenderer.sink.SiteRendererSink.unknown

My project started to fail during the execution of mvn site:site since I updated the maven-surefire-report-plugin to version 2.8, which was just released a week or so ago. Here is the exception: ...
2
votes
1answer
595 views

JUnit runner gets NullPointerException from java.io.Writer

I'm getting a NullPointerException from Maven Surefire plugin. It occurs only on a test that is using DBUnit. The Surefire report file is empty. ...
2
votes
2answers
1k views

Maven/Surefire finds no tests to run

As far as I can tell, the test files location is correct. When I run "mvn test", it finds four classes named SomethingTest (they are located in the 'test' folder). However, it ignores any of the ...
2
votes
4answers
732 views

@RunWith causes Maven to ignore my Test running with my own runner

I am moving from using only Intellij to manage my build system to Intellij/Maven. When I run my integration test "MapSimulationTest" with my own runner via @RunWith(KmlParameterizedRunner.class) ...
2
votes
3answers
2k views

Why is Maven failing with a SurefireExecutionException: > Cannot set option parallel with value

Hi I am working through the tutorial here using windows XP and latest builds http://binil.wordpress.com/2006/12/08/automated-smoke-tests-with-selenium-cargo-testng-and-maven/ Could someone please ...
1
vote
1answer
76 views

How to add unescaped HTML-HREFs to a surefire-report to show links in Jenkins

My problem is as described in the title. I'd like to add an HREF into the output of a surefire-report. But surefire is escaping the <. Does anyone know how to avoid the escaping?
1
vote
0answers
269 views

Is there a way to force Maven Surefire or JUnit to indicate the name of the failing test class when executed from a Test Suite?

My question: Is there a way to force Maven Surefire (or JUnit?) to indicate the name of the failing test class when this class has been executed from a Test Suite? Now, the long story. Imagine you ...
1
vote
3answers
598 views

How to get a test resource file?

In a unit test I need to import a csv file. This is located in the resources folder, i.e. src/test/resources
1
vote
1answer
328 views

Debugging maven tests with netbeans?

I'm trying to debug maven tests in NetBeans 6.9.1. Does anyone know how to go about doing this? The reason I ask is because if I run my tests using Maven, they all pass. However, if I debug my tests ...
1
vote
2answers
1k views

maven surefire reporting plugin configuration

I have a multi-module maven project. The parent pom.xml is simply a way to reference common information for the 4 subprojects. I have quite a few JUnit tests that run and I also have the Parent ...
0
votes
0answers
37 views

How to add to surefire report positive steps in JUnit

I'm using surefire reports to document my JUnit test. I want to create something like test log after execution of JUnit data, but I have no idea how I can add additional data to surefire report ...
0
votes
0answers
78 views

How to make surefire-report link to the failure line in the source code

I am trying to make the generated surefire reports, link to the line in source code, where the error took place. I have followed everything mentioned on the plugins documentation over here. Although ...
0
votes
1answer
242 views

ClassFormatError - Surefire?

When I attempt to deploy artifacts, I get a ClassFormatError for my projects that do have tests: [INFO] --- maven-surefire-plugin:2.5:test (default-test) @ ssh-exec --- [INFO] Concurrency config is ...
0
votes
2answers
381 views

How to split maven-surefire-plugin execution to two separate executions?

This is what I'm trying to do: [...] <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> ...
0
votes
1answer
132 views

Surefire : How to change output behaviour

I'm looking in a way to only write txt files for unit tests that failed when using maven with surefire. The current behaviour of the surefire plugin is that it writes .txt and .xml file for every test ...
0
votes
3answers
1k views

Making Maven run all tests, even when some fail

I have a project with several modules. When all tests pass, Maven test runs them all. When tests fail in the first module, maven will not continue to the next project. I have testFailureIgnore set to ...
0
votes
1answer
299 views

surefire forkMode causes only last test to be recorded in TestSuite.txt

I have the following in my pom.xml <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> ...
0
votes
0answers
344 views

Failed to instantiate class<My_Class_Name> using org.apache.maven.surefire.booter.IsolatedClassLoader@135ae7e

I am trying to test that my two coherence clusters are communicating with each other successfully. Everything seems to be running fine besides the Proxys which throw the exception. Failed to ...
0
votes
2answers
490 views

TestNG Ant tasks vs Surefire

I was wondering how different surefire is when executing TestNG than TestNG ant tasks? The reason is that I am seeing consistent difference in behavior when trying to run a TestNG test that extends a ...