Tagged Questions
The surefire tag has no wiki summary.
20
votes
6answers
10k 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 ...
20
votes
4answers
10k views
Maven 2.1.0 not passing on system properties to Java virtual machine
We use the command line to pass on system properties to the Java
virtual machine when running our Hudson builds on a Linux box. It used
to work quite well in 2.0.9 by since we upgraded to 2.1.0 it ...
11
votes
2answers
248 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 ...
10
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 ...
8
votes
2answers
3k views
How to use Maven Surefire plug-in with different groups for test and integration-test?
I want to use testng with the Surefire plug-in of Maven. The idea is to tag some tests with a group integrationTest and run the plug-in twice: for goal test excluding the group integrationTest and for ...
7
votes
2answers
823 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 ...
7
votes
2answers
836 views
make maven's surefire show stacktrace in console
Id like to see stacktrace of unit tests in console, does surefire support this?
6
votes
2answers
3k views
Maven (surefire): copy test resources from src/test/java
Maven's surefire (testing) plugin copies files in src/test/resources to target/test-classes. It compiles .java in src/test/java, and copies the compiled .class files to target/test-classes.
But it ...
5
votes
1answer
201 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 ...
5
votes
3answers
4k views
Is there a way to skip only a single test in maven?
I would like to skip only a single test while launching mvn install.
Is there a way to do that ?
4
votes
2answers
1k views
how to debug maven surefire test more easily (using eclipse as debug server)
I'm using maven / surefire / eclipse to write some code and later test / debug it.
Standard way to do it is by using maven.surefire.debug maven property. By default, when this property is enabled, ...
4
votes
5answers
770 views
Maven Surefire: Unable to fork parallel test execution
using Maven surefire, I'm unable to fork parallel test execution. That is, each of my test cases hs to run in a serapate JVM, hence the forking. In addition, I want my test cases to run in parallel. ...
4
votes
3answers
2k views
Does Maven surefire plugin run tests using multiple threads?
I'm wondering if the Maven surefire plugin either runs tests multi-threaded by default (and if so can the number of threads be controlled? ) or if it runs tests from the Test classes in a random order ...
3
votes
2answers
77 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
71 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
1answer
39 views
Perform checks against XML files, such as Oracle OSB files and Soap-UI test files
Looking for a way we can do checks on XML files, beyond just schema validation. Have found a few references to Schematron which looks interesting, but struggling to see how we can piece this all ...
3
votes
2answers
128 views
If I @Ignore a test class in JUnit4, does @BeforeClass still run?
Quick background: I've been hunting down a Maven / Surefire test-running problem for days now, and I've narrowed it down to a small number suspect of tests. The behavior I'm seeing is insane. I ...
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
2answers
174 views
run maven tests from classpath
In order to clean up something of a giant mess, I set out to put the code of my tests all in one ordinary java project (all in src/main/java), and then declare that as a ...
3
votes
6answers
2k 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 ...
3
votes
2answers
3k views
Maven surefire plugin fork mode
By default maven surefile plugin run tests in isolated (forked) environment. You can override this behavior with following configuration:
<build>
<plugins>
<plugin>
...
3
votes
2answers
1k views
Unbelievable: Cannot cast from class X to its super class
I'm encountering a very weird problem with Spring (3.0.1.RELEASE), TestNG (5.11) and Maven Surefire (2.5).
I have a test class that extends a Spring helper class for testNG so that test context can be ...
3
votes
1answer
645 views
Is there a existing way to generate surefire reports with simple-build-tool?
I'm working on a project using Scala running Selenium tests as part of a continuous integration process. Hudson displays very helpful information based on the results in the surefire reports but I ...
3
votes
2answers
1k views
Maven - Selenium - Possible to run only one test
We are using JUnit - Selenium for our web tests. We use Maven to start them and build a surefire report.
The test suite is pretty large and takes a while to run and sometimes single tests fail ...
3
votes
5answers
391 views
Is there a way to “fail fast” for junit with the maven surefire plugin?
I'm currently working on a java project using maven. We use the maven surefire plugin to run our junit suite as part of the build process.
Our test suite is rapidly growing, in both coverage and ...
3
votes
1answer
3k views
Maven Eclipse unit test configuration
I use Eclipse and for some of my unit tests, I need to set some JVM args for the test to work, -Djava.library.path in particular. I set it in my POM file as follows:
<plugin>
...
2
votes
2answers
113 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
39 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
200 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
118 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
2answers
820 views
Running all tests from a @Category using Maven
I want to run only a subset of my unit tests, the ones defined by a specific @Category.
So I read several SO questions, such as this one (which is exactly what I am looking for), and also this one.
...
2
votes
2answers
976 views
Is there a way to tell surefire to skip tests in a certain package?
Something like the following.
I would like a way to skip my dao tests in surefire. Trying to avoid overhead of defining Suites.
With CI I'd like to have one nightly that runs all tests and another ...
2
votes
2answers
277 views
How to show log4j output in surefire test resports
When a test fails in maven the surefire test report xml files in target/surefire-reports/TEST-<test-name>.xml only shows the Standard Output System.output or Standard Error System.err
When I ...
2
votes
1answer
551 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
1answer
787 views
Where can i find the DTD or XML Schema of surefire generated XML (TEST-<testname>.xml) file?
Where can i find the DTD or XML Schema of surefire generated XML (TEST-.xml) file?
2
votes
1answer
582 views
How to write something to surefire log with JUnit 4
Is it possible to write something from inside the test to surefire-reports/MyClass.txt ? Any kind of logger etc ? There is a Reporter in TestNG:
Reporter.log("Something here");
and the message ...
2
votes
1answer
398 views
How do I make the manifest available during a Maven/Surefire unittest run “mvn test”?
How do I make the manifest available during a Maven/Surefire unittest run "mvn test" ?
I have an open-source project that I am converting from Ant to Maven, including its unit tests. Here's the ...
2
votes
3answers
1k views
Debugging maven junit tests with filtered resources?
We are using filtered testResources in JUnit-tests that are usually executed by the maven surefire plugin. That is, the pom contains a section
<build>
<testResources>
...
2
votes
2answers
2k views
Junit run not picking file src/test/resources. For file required by some dependency jar
I m facing a issue where test/resource is not picked,but instead jar's main/resource is picked
Scenario is like : Myproject
src/test/resources--- have config.xml w
which should be needed by abc.jar ...
2
votes
4answers
697 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 ...
2
votes
3answers
820 views
Maven Multi-Module builds not honoring failsafe-maven-plugin?
I recently discovered that Hudson was not the problem. In actuality it was Maven itself as the multi-module build was causing the build failure, not Hudson. I just hadn't noticed where the issue ...
2
votes
2answers
492 views
Maven 2 plugin, build + surfire
If i define a plugin in the <build> tag and want to use this in my site command how do i do that? Do i have to define the plugin within <reporting> tag again?
And how about the ...
1
vote
1answer
68 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
1answer
32 views
Maven: Surefire --dry-run?
Is there some way to dry-run surefire?
Something which would list wich tests would run, without running them.
The goal is, to know which tests (would) run in AS7 testsuite under certain config.
1
vote
1answer
131 views
Stop Tests on first Failure with Maven/JUnit/Spring
I'd like Maven to stop trying to run my JUnit Spring tests when it encounters the first error. Is this possible?
My test classes look like the following, and I run them just as a standard Maven ...
1
vote
3answers
71 views
Can I make Surefire perform expensive setup/teardown only once?
I have a series of unit tests that all need to talk to an Apache Zookeeper server. Obviously, if I had a library for mocking server connections (or an easy way to roll my own) that would be optimal, ...
1
vote
1answer
186 views
Excluding TestNG Groups From Maven
I have some slow tests that rely on the database that I don't want run every time I build my project with Maven. I've added the excludedGroups element to my pom file as explained ...