The maven-surefire-plugin tag has no wiki summary.
10
votes
3answers
340 views
what, besides Class objects, is stored in Perm Gen Space (sun 1.6 VM)?
I am seeing 'java.lang.OutOfMemoryError: PermGen space' while running ~300 JUnit tests and using Spring context. Having a tough time figuring out what's eating up PermGen since:
in steady state the ...
4
votes
1answer
384 views
How do I configure maven to print JUnit assertion failure message to console
I'm using the surefire maven plugin to run unit tests. My test class looks like this:
public class Test1 {
@org.junit.Test
public void testThatFails(){
Assert.assertTrue("false is never ...
2
votes
2answers
60 views
+50
Set surefire plugin Locale in Maven pom file
I read in maven-surefire-plugin and default locale that Maven runs tests forked and thus might lose any locale you might have set.
Is there a way to run tests in Maven in forked mode and still ...
2
votes
1answer
149 views
Running Unit Tests using Maven in Spring LTW Environment
I am developing an application in a ddd architecture using Spring LoadTimeWeaving feature. The problem is i can run my Junit tests using eclipse but not through Maven. I have tried all the options ...
2
votes
1answer
69 views
Maven tests vs ant tests (more specifically now)
Ok, a little backstory on this one. I'm responsible for translating a project from a (terrible) ant build to a maven build. My first step was to simply remake the final EAR as similar as the Ant one, ...
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:
...
1
vote
1answer
30 views
How can I get maven-release-plugin to skip my tests?
How can I get the maven-release-plugin to run without triggering the tests?
I have tried
-Dmaven.test.skip=true
and
-DskipTests
and
-DpreparationGoals=clean
...yet none work.
Yes, I ...
1
vote
1answer
56 views
How to import working directory for JUnit from maven to Idea
I am trying to make new developers of my maven project to have as easy start as possible. I am using and recommending Intellij Idea as an IDE for them. I am pretty satisfied with the results of ...
1
vote
1answer
97 views
Maven: How do I configure tests to run in integration-test phase?
I'm using Maven 3.0.3. I want to run some Junit tests in my test phase and others in my integration-test phase. Problem is nothing is running during the integration-test phase. I run the command
...
1
vote
0answers
42 views
Maven + Surefire: proxy configuration
I'm using httpunit to access a server.
I need to configure the proxy settings for this (http and https).
I set the configuration in the settings.xml file, but surefire seems to ignore it!?
I want ...
1
vote
1answer
85 views
Output failed test details to stdout using maven surefire
When I run my build using maven 2
mvn clean install
my tests are run by surefire plug-in. In case test failed I get the following output:
Results :
Failed tests:
test1(com.my.MyClassTest)
...
1
vote
1answer
32 views
Can I modify the HTML generated by sure-fire reports maven plugin?
Is there a way to modify the surefire-reports maven plug to include some additional HTML or javascript?
1
vote
3answers
141 views
maven test report format
When I run the tests In my Java/Groovy Maven project, the test reports are stored in target/surefire-reports. For each test class that is run a .txt and .xml file is created showing the output of that ...
1
vote
2answers
1k views
Running different test suites using testng and maven
I am using TestNg and Maven with the surefire plugin to run my tests. I have several different components that I want to be able to run at different times using the same pom. Currently to do this I ...
0
votes
0answers
35 views
cucumber-jvm junit reports and maven-surefire-plugin
I'm trying to figure out how to get cucumber-jvm to produce separate xml report for each feature file. At this moment if I'm running it with mvn I'm getting a single xml, but I wan't a separate file ...
0
votes
1answer
36 views
Implementing TestNg suite programmatically and executing it via maven surefire
How to implement TestNG test suite using java instead of testng.xml. i follow following procedure but i cannot run it with the maven suefire plug in.
Please help
TestNG testNG = new TestNG();
...
0
votes
2answers
37 views
Surefire doesn't launch test in src/main/java
I needed to move some src/test/java to src/main/java according to this recommandation from maven-jar-plugin documentation => http://maven.apache.org/plugins/maven-jar-plugin/usage.html
So i create ...
0
votes
1answer
16 views
Maven 3.0.3 uses old JUnit Plugin which doesn't have org.junit.* package
I'm using Hudson and trying to build a maven project from subversion repository.
Problem is, that Maven downloads an old junit version, I guess, because I found this:
Downloading: ...
0
votes
1answer
50 views
Threaded Maven builds with sequential Unit Tests?
With Maven 3 it`s possible to build Projects with multiple Threads, like
mvn -T 4 clean install
Since we have Unit-Tests setting up on a consistent Database (and manipulating the data during ...
0
votes
1answer
48 views
Running tests with maven packaging type “pom”
I'm having some issues running my unit tests when my pom is set to packaging type "pom". At first, it was saying no goals needed for this project, so I added the maven-surefire-plugin to my pom.xml to ...
0
votes
2answers
29 views
How to run a maven goal when there is tests failures?
I would like to know if there is a way to execute a goal when there is test failures?
Since maven stops its execution (fail fast mode) after encountering a test failure, is there any options to ...
0
votes
1answer
59 views
Managing report plugins in maven site
I'm using Maven 3 in a multi module project and configured site with following report plugins:
1. findbugs
2. cobertura
3. surefire report for tests
<plugin>
...
0
votes
2answers
42 views
Run tests from a @Category using Maven
I have looked at a few other SO questions like this and this. But those questions are pretty dated and I'm curious if there exists a new solution.
Here's what my setup looks like:
Category ...
0
votes
0answers
51 views
Emma coverage reports and integration tests
Is there any way to get Emma to report integration tests? Currently our Emma coverage is only showing unit tests.
Adding for clarifcation:
we are using maven to run build and tests. Are tests are ...
0
votes
1answer
57 views
Netbeans maven-surefire-plugin not generating HTML
How can I run 'mvn'.
I'm using Netbeans 7 and when I run my Unit tests, I do get generated XML files from my project /target folder
/target/surefire-reports/TEST-package.name.ClassNameTest.xml
...
0
votes
2answers
96 views
Is there an easy way to add jars on surefire-plugin test classpath
there is this property additionalClasspathElements but unfortunately it doesn't process directories with jars
this problem is really hard to deal with ... the only way that occurs to me is to create ...
0
votes
0answers
30 views
How to integrate my test library with JUnit and Maven?
I have a test library, which reads test definitions from text files and runs tests using these definitions. Now I would like to run it with junit using maven. So, I would like to write a custom junit ...
0
votes
2answers
116 views
Maven 3: override command line in POM
We can override properties defined in POM using command line.
Can we somehow make the opposite effect? To override command line parameters in POM?
I have a Hudson with "-Dmaven.test.skip -DskipTests ...
0
votes
0answers
218 views
Missing execution info using Maven failsafe plugin, surefire report plugin, and multiple executions
I have the following in my pom.xml (some details have been changed for simplicity's sake):
<plugin>
<groupId>org.apache.maven.plugins</groupId>
...
0
votes
1answer
112 views
Maven test does not complete
When i run a
mvn test
Maven runs all the tests successfully and then goes on a wait infinite loop
I see a java process in the task manager and I have to kill it before maven returns with this ...
0
votes
0answers
63 views
maven-surefire-plugin hangs when one of the tests perform getTuntime().exec() for command that never endded
One of my tests opens a process which never ended. this is the correct behaviour.
However, it seems that the maven-surefire-plugin hangs. Only when i kill the process does the maven task end.
Anyone ...
0
votes
1answer
298 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
1answer
424 views
How to make maven-surefire-plugin work with TestNG in Eclipse
I cannot make these two work together in eclipse
I can set up surefire plugin like this
<suiteXmlFiles>
...
0
votes
1answer
47 views
how can I set an empty mvn property in m2eclipse?
I want to make a mvn run-configuration in eclipse/m2eclipse. I want to mimic the following mvn command:
mvn -Dmaven.surefire.debug test
However, when I add a parameter to the configuration, I must ...
0
votes
0answers
71 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
2answers
240 views
Maven Surefire: run a single unit test
I know that it's possible to run a specific test class with -Dtest=MyTest. But is it possible to run a specific test within that class?
I.e. if MyTest defines testFoo() and testBar(), is there a way ...