The Surefire Plugin is used during the test phase of the build lifecycle to execute the unit tests of an application. It is commonly used in continuous integration.

learn more… | top users | synonyms

0
votes
0answers
12 views

Jenkins builds failing while recording test results

We have Jenkins version 1.494 and Java 6. It is deployed on JBoss server. I was able to build the projects (using Maven 2) earlier but not sure what has changed and I am getting below error after the ...
0
votes
1answer
12 views

Maven Site scannotation.jar

i'm trying to get maven site running. But for now four hours I'm getting a Problem with a dependency. When I'm running maven I get this failure [WARNING] Unable to create Maven project for ...
0
votes
1answer
21 views

how to “debug as maven test” in eclipse (sts)

I have written test cases in JUnit and they are executing fine when I use run as - maven test. But although I put debug points and select debug as - maven test, debugging does not work. I use ...
0
votes
1answer
103 views

Why does this autorun-cmd registry hack affect a java/maven process?

The presence of an HKEY_CURRENT_USER\Software\Microsoft\Command Processor\Autorun causes a java test to fail. Github repo to test this out : https://github.com/ajorpheus/final-frontier This is a ...
1
vote
1answer
66 views

Unit test failing due to surefire plugin's forkmode

There is a test in my code which creates a directory and then creates a file inside it. However, this test fails as the portion of the test that writes the file is not able to find the directory ...
1
vote
1answer
73 views

Does Jenkins/Hudson require maven-surefire-plugin to publish test results?

Does Jenkins/Hudson require maven-surefire-plugin to be executed in order to display "Latest Test Result", "Test Result Trend" diagram and to allow users to drill down to specific classes/tests? I was ...
0
votes
2answers
30 views

Warm up maven dependency cache

How can I warm up the dependency cache of my maven tests? E.g. mvn test -DskipTests downloads some of the dependencies, but not all, e.g. some of the maven surefire plugin dependencies are only ...
1
vote
2answers
85 views

Stop tests execution after first error/failure with maven surefire

I'm using maven surefire plugin to execute the junit tests of my application. I want to stop the execution after the first failure or error. In my case, these are integration tests that modify the ...
6
votes
2answers
142 views

NoSuchMethodError with Hamcrest 1.3 & JUnit 4.11

Another instance of the NoSuchMethodError for the JUnit & Hamcrest combination. Offending code: assertThat(dirReader.document(0).getFields(), hasItem( new FeatureMatcher<IndexableField, ...
0
votes
1answer
42 views

Powermock - @SupressStaticInitializationFor is not working

I have a class containing native methods and a static initializer which loads a dll and mocked it with powermock so that the the static initializer should be suppressed and the dll shouldn't be ...
0
votes
1answer
28 views

In Hudson, when seeing the TestNG results, is there a way of displaying the parameters the test methods were run with?

I'm able to see the tests that were run, but I'm trying to display the parameters that were passed to them when using the testNG @Parameters annotation.
0
votes
1answer
32 views

How to indentify tests that are failing with mvn test

I have setup maven and surefire for running unit tests. The test classes are configured to run in parallel; i.e. classes Sometimes when I run "mvn test", some tests fail with a timeout. However, ...
0
votes
1answer
75 views

Selenium java driver.close giving error to produce surefire reports

I am using selenium webdriver maven setup. So if I use driver.close() in code, I am getting error like below why it is can any one help on this. [ERROR] Failed to execute goal ...
3
votes
1answer
97 views

Run a single testing using maven multiple times

I have a TestNG unit test that is intermittently failing. Is there a way to run a single unit test multiple times using the surefire plugin? If not, are there any suggestions on the best way to handle ...
2
votes
2answers
93 views

How to exclude specific unit tests from default “maven test” and eclipse “run as junit test”

In my code I have 2 types of tests: fast unit tests and slow performance tests. I am trying to ensure that the performance tests are never run unless the user explicitly wants to run them (e.g. using ...
1
vote
1answer
115 views

Junit (DBUnit) tests fail with Maven but not in Eclipse?

My Junit tests use DBUnit and they run fine when run from Eclipse. However, running the same tests with Maven fails one test with: integrity constraint violation: foreign key no action I have tried ...
0
votes
1answer
223 views

Mono “Hello World” example working, but Java is not

I'm running the Getting Started Examples from the Sauce Labs homepage both with Java and C# Mono. The Mono example works like a charm, but the Java one reports that Could not start a new session. ...
0
votes
2answers
55 views

How to change default maven surefire plugin to higher version?

Now I'm running Maven 3.0.3 and it uses maven-surefire-plugin:2.7.2, but I want Maven to use a higher version of maven-surefire-plugin…
0
votes
0answers
74 views

Elasticsearch Surefire Issue: SERVICE_UNAVAILABLE

My integration test starts within the setUp() method a new elasticsearch "master" + "data" node and in the test method using client node i want to perform some operations on that master node. ...
2
votes
2answers
125 views

Relationship between cobertura and surefire

The problem in 1 sentence: "Cobertura does not produce correct code coverage" Below is my pom.xml file <?xml version="1.0" encoding="UTF-8"?> <project ...
0
votes
1answer
116 views

Running code before and after all tests in a surefire execution

I have a Grizzly HttpServer that I want to run for the entire duration of a test group execution. Additionally, I want to interact with the global HttpServer instance from a @Rule inside the tests ...
0
votes
0answers
52 views

Jenkins Maven2 project fails with NPE looking for surefire reports

I have a Maven2 Jenkins job which compiles a Visual Studio 2010 MVC project and runs some unit tests with Gallio. When I run the job in Jenkins it fails with a NullPointerException looking for ...
0
votes
0answers
49 views

TestNG taking lot of time to start executing test cases

We are using testng (v 6.1.1) for writing unit test cases in our application and those unit tests are executed using maven-surefire-plugin (v 2.12.2). Whenever we are trying to do mvn test, its ...
2
votes
1answer
72 views

How to profile wall clock time of tests running in maven surefire

I'm trying to profile a suite of tests that are being run from maven surefire. I've found related questions such as this and this nothing quite what I'm looking for. Can someone recommend a profiler ...
0
votes
0answers
30 views

setting system properties for maven execution

Is it possible to set a system property for the execution of a maven build, via the pom? I need to do this to run un-forked tests (surefire - forkMode=never) with specific system properties. Thanks. ...
1
vote
0answers
72 views

Maven Surefire @BeforeClass executing before every test

I'm trying to use the @BeforeClass annotation to initialize DB data and connection. But when I launch my test with mvn test I notice that the static method annotated by @BeforeClass is executed for ...
1
vote
0answers
128 views

TestNG Dataprovider not supported in Maven surefire?

I have following TestNG Unit Test class: public class SomeTest extends AbstractEntityTest { ... @DataProvider public Object[][] getClasses() throws Exception { return ...
3
votes
1answer
181 views

Using JUnit RunListener in IntelliJ IDEA

I'm working on project where I need to perform some action before running each JUnit test. This problem was solved using RunListener that could be added to the JUnit core. The project assembly is done ...
2
votes
1answer
134 views

maven-surefire-plugin and ReportNG cannot change stylesheet for the test report

I like to change style (use another .css than reportng.css) on the standard report from ReportNG using Maven. My pom.xlm looks like this ... <build> <plugins> ...
3
votes
1answer
125 views

Report manually run tests with surefire

I have a series of tests I need to run from maven. The tests are run through a series of custom created scripts, that run something like qunit, that outputs a junit style xml file that I then copy ...
0
votes
0answers
86 views

Maven site Surefire Report Already value for key bound to thread

I was using mvn clean install site but the build failed when there were failures. But I want to generate the HTML even when there are failures. So I tried: mvn clean install site ...
1
vote
1answer
103 views

How to exclude all JUnit4 tests with a given category using Maven surefire?

I intend on annotating some of my JUnit4 tests with an @Category annotation. I would then like to exclude that category of tests from running on my Maven builds. I see from the Maven documentation ...
1
vote
1answer
134 views

Maven: disabling test phase but not integration test phase

I'm working with a maven project, and are trying to run only the integration tests, while skipping unit tests. I'm running the integration tests using failsafe plugin, and the plugin execution is ...
0
votes
1answer
65 views

Autowiring exception when using multiple context loaders in JUnit

I have created 2 classes A,B for JUnit, each has its own ContextLoaders for loading the application context. Now when I run each of these classes independently the JUnit test run fine. But when I do ...
0
votes
0answers
112 views

Sonar can't deal with surefire integration reports

If you have a look at https://github.com/cucumber/cucumber-jvm/issues/322 and http://jira.codehaus.org/browse/SONAR-3470 you will see that Sonar is unable to deal with surefire reports that have been ...
1
vote
1answer
76 views

surfire plugin maven : env variable for specific tests

I am facing an issue with Maven and the Surefire plugin. I have two tests: testDatePos.java and testDateNeg.java and for each test an environment variable must be set. It is the same environment ...
1
vote
2answers
279 views

Maven complete surefire-report including passed tests logging events

I want to generate a report usinf surefire-report plugin of maven which will give me a detailed report of all the tests that were run with the log events that were logged during each test run instead ...
1
vote
0answers
219 views

Maven surefire: append to argLine

I have 2 profiles that may or may not be used together to run a group of tests. They each require different vmargs to run, but if they are used together it's ok to have them appended to each other. ...
0
votes
0answers
100 views

How to disable maven-surefire-junit stdout report generation or remove junit formatter

I have an integration test case where my application is tested using the maven-surefire-test plugin. This integration tests produces a stdout log of about 26MB. It is an integration test after all. ...
0
votes
1answer
93 views

Maven: vm args in MAVEN_OPTS arent working, but they are if specified in the command line

I have a particular test case that is run by surefire which fails when this vm arg is not set. I am able to get the test to successfully pass if i run: mvn test -Dtest=TestClass ...
1
vote
1answer
219 views

How to configure maven surefire to use an jvm agent that is a dependency?

I would like to configure the maven sure fire plugin to start the unit testing jvm with the argument for a java agent. The agent jar file is being obtained from maven central so I want maven to ...
0
votes
1answer
595 views

pass a java parameter from jenkins -> maven -> testng

Our automated QA test cases are scheduled and executed by Jenkins. I have to run the test cases on different environments say UAT , STAGE and PROD (as they have different test data) and these test ...
1
vote
2answers
99 views

How do I run test groups with Scala + JUnit runner + Maven?

I'm trying to support running tags/groups of tests on the Maven commandline. I think I have the correct syntax setup in my .scala file (see below), but I'm unsure how to actually execute on the ...
4
votes
0answers
81 views

How do I get more than 2 threads to execute with Surefire + Maven?

I can't get any more than two threads executing at once using the Maven + Surefire combo. I've experimented with a number of combinations of threadCount, perCoreThreadCount, and useUnlimitedThreads ...
0
votes
1answer
515 views

Maven build issues - can anyone help me in knowing why I see this error when I do run as maven install

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.10:test (default-test) on project resteasy: Execution default-test of goal ...
0
votes
0answers
20 views

Surefire run tests in other path

I want the surefire to find the class files of my tests in the outputdirectory of the compile plugin (in the bin folder of my project). In the bin folder are all the class files which contain all my ...
1
vote
1answer
274 views

How can I get maven to continue module builds after reaching surefire forkedProcessTimeoutInSeconds threshhold

In a multi module mvn 3.0 build, I set forkedProcessTimeoutInSeconds to one hour. If tests in module A hang, I hit surefire threshold which will fails the build and skips remaining modules. We use ...
2
votes
2answers
60 views

Generate test-jar along with jar file in test package

I want to package my test package to jar file . How to execute generate test-jar from maven plugin Surefire.
1
vote
0answers
81 views

surefire-report adding input data to the report

I'm trying this brillian maven plugin to produce test reports. The problem I'm having is that I'm using the Parameterized class to add inputs. So now my report looks like this: testAuth[0] 0.411 ...
0
votes
3answers
1k views

Troubles with SureFire plugin: -“The forked VM terminated without saying properly goodbye. VM crash or System.exit called ? ”

While running of unit tests following exception occurs: org.apache.maven.lifecycle.LifecycleExecutionException: ExecutionException; nested exception is java.util.concurrent.ExecutionException: ...

1 2 3