Tagged Questions
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 ...
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
844 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
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 ?
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
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 ...
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
779 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
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
1answer
74 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
2answers
175 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
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
5answers
393 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
118 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
6answers
203 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
2answers
991 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
3answers
2k views
Logging level under maven surefire
I'm unable to adjust java logging's logging level. I'm using maven surefire (mvn test), and trying to adjust from the default INFO to e.g. FINEST.
I have logging.properties file under ...
2
votes
1answer
793 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
585 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
399 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
698 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
821 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
494 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
2answers
600 views
Maven/TestNG reports “Failures: 0” but then “There are test failures.”, what's wrong?
I'm using Maven 2.2.1 r801777, Surefire 2.7.1, TestNG 5.14.6, Java 1.6.0_11 on Win XP.
I have only one test class with one empty test method and in my pom I have just added TestNG dependency. When I ...
1
vote
1answer
141 views
Can I run post processing on my maven integration test results if there are test failures?
I want to extend a maven2 POM to run some post processing on my integration test results. I added a java:exec plugin and bound it to the post-integration-test phase. All is fine when the tests pass ...
1
vote
1answer
319 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 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 ...
1
vote
1answer
997 views
Generating html surefire test html output during test phase
I'm not sure if this is a simple question or not, but I'd like surefire to generate html formatted output files(in addition to the xml and txt formatted output files) during the test phase.
I've ...
1
vote
1answer
275 views
Maven test failure xml FileNotFoundException
My Maven build is failing on Hudson with a FileNotFoundException, I do not get the same failure through NetBeans. The FileNotFoundException is for some xml files in the same packages as my test ...
1
vote
1answer
201 views
Derby gets stuck closing?
I've got unit tests (in maven) that use derby.
At the end of the test run, there is a very long pause, with these log messages before the pause.
INFO: Closing Hibernate SessionFactory
Nov 16, 2009 ...
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
1answer
303 views
How to pass parameters to guicified TestNG test from Surefire Maven plugin?
I'm using Maven + Surefire + TestNG + Guice (latest stable ones)
I have "large" test that requires Guice to run.
Basically I'm doing it this way:
@Test(groups = "large")
@Guice(modules = ...
0
votes
2answers
127 views
Displaying junit fail messages through maven2
I have a Java project that is built through maven2. We use JUnits and occasionally have test failures. I'm wondering if there is a way to display more information when the test fails. When I run ...
0
votes
1answer
122 views
Binary output and testing for Eclipse plugins
I am developing an Eclipse plugin and I use maven to coordinate my source structure. In order to compile the plugin I use the tycho extension for maven. However, I was wondering how to execute ...
0
votes
1answer
620 views
Maven Surefire Report Missing from Generated Site
I'm having a little difficulty in getting the surefire report to appear in the generated site. I run mvn clean site:site and the report is missing.
My pom.xml looks like this:-
<?xml ...
0
votes
1answer
52 views
Does the “test” property take precedence over the “excludes” configuration list in Surefire?
In surefire, if I name a test in the "test" property that overlaps a pattern in the "excludes" config, will it get executed?
...
0
votes
1answer
122 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
286 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
335 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
433 views
maven surefire additionalClasspathElements single test
I have one main and one test config file which is shared by several maven projects. While testing, I am specifying the classpath to the directory where the test config file is.
This works fine if the ...