Tagged Questions

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 ...
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
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 ...
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
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 ...
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 ...
1
vote
2answers
598 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
2answers
646 views

Order of Maven+Surefire+Testng - BeforeClass, BeforeTest, Test, Test, AfterTest, AfterClass

I expected the following output: Running TestSuite [DEBUG] beforeClass [DEBUG] beforeTest [DEBUG] test [DEBUG] afterTest [DEBUG] beforeTest [DEBUG] test [DEBUG] afterTest [DEBUG] afterClass But ...
0
votes
0answers
50 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
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
425 views

Setting up output directory of TestNG eclipse plugin

I'd like to use both testNG eclipse plugin and maven surefire plugin together. And I was told here, that I can listen to the output folder "target/surefire-reports" when running maven test and the ...
0
votes
2answers
478 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 ...