Tagged Questions

TestNG is a testing framework focused on providing both unit and functional testing abilities. It supports parallel testing, data providers, dependencies (used heavily in Selenium), groups and many more features.

learn more… | top users | synonyms

40
votes
8answers
12k views

Junit vs TestNG

At work we are currently still using Junit3 to run our tests. We have been considering switching over to Junit4 for new tests being written but I have been keeping an eye on TestNG for a while now. ...
15
votes
9answers
771 views

What do you need from a test harness?

I'm one of the people involved in the Test Anything Protocol (TAP) IETF group (if interested, feel free to join the mailing list). Many programming languages are starting to adopt TAP as their ...
12
votes
4answers
11k views

JPA-based JUnit Test Best Practices

This is a bit of an odd question, but it has been bothering me for a few months now. I have built a JPA-based web application using Wicket + Hibernate (built with Maven), and want to test the DAO ...
8
votes
6answers
1k views

@BeforeClass and inheritance - order of execution

I have an abstract basis class, which I use as a basis for my unit tests (TestNG 5.10). In this class I initialize the whole environment for my tests, setting up database mappings, etc. That abstract ...
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
3answers
617 views

Run TestNG/JUnit Integration Tests on Remote Server from within IDE

Inside my IDE (Eclipse or NetBeans, doesn't matter), i have some TestNG testclasses (But my question also refers to remote JUnit tests), which are Integration tests. These tests need an integration ...
7
votes
3answers
994 views

Spring-Autowiring happens after @BeforeClass when running test with maven-surefire

I have some problems with dependency injection (Spring autowiring) and maven-surefire. The following test works without problems when run in eclipse with TestNG: The service-object is injected, then ...
7
votes
10answers
4k views

What is the best way to write a test case for JERSEY web services?

I have a JAX-RS web service implemented with Jersey library and now I want to test it. In order to do that I'd like to host this service in my test by preinitializing it with mocked services. What is ...
6
votes
1answer
257 views

How to get logging working in scala unit tests with testng, slf4s, and logback

I'm new to Scala, and not that familiar with recent developments in Java, so I am having what I assume is a basic problem. I'm writing some Scala code, and testing it with test fixtures using ...
6
votes
5answers
1k views

JUnit vs TestNG

For one reason or another I've been asked to write a short summary to what the advantages and disadvantages of both JUnit and TestNG are compared to each other. Ideally I want to suggest what types of ...
6
votes
12answers
900 views

Which UnitTest framework to learn for Java now?

Although I have programmed with Java for roughly 3 years + now (not day-to-day but at least I understand the fundamentals), haven't really come into the field of Unit Testing... My work is now more ...
6
votes
1answer
1k views

Spring Dependency Injection with TestNG

Spring support JUnit quite well on that: With the RunWith and ContextConfiguration annotation, things look very intuitive @RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(locations = ...
6
votes
5answers
3k views

How to execute JUnit and TestNG tests in same project using maven-surefire-plugin?

Right now I have both type of tests but when I say "mvn test" it only executes TestNG tests and not Junit. I want to execute both one after another. Any Idea ?
5
votes
0answers
137 views

java.lang.LinkageError: ClassCastException

I do experience a really annoying problem with TestNG and RESTeasy. I do have a class that runs several tests against an API class which uses the RESTeasy framework to expose itself. However if I ...
5
votes
2answers
82 views

Why does JUnit run test cases for Theory only until the first failure?

Recently a new concept of Theories was added to JUnit. In a nutshell, you can mark your test method with @Theory annotation (instead of @Test), make your test method parametrized and declare an array ...
5
votes
2answers
1k views

How can I identify the Selenium Grid host running my test from within the test?

I am using Selenium Grid with TestNG to run my tests in parallel. I have certain tests that require a user to be logged in, so I have a user account configured for testing. I have been careful to ...
5
votes
5answers
5k views

Possible to pass parameters to TestNG DataProvider?

We would like to run some of our tests each against a set of data values, verifying that the same conditions hold true for each. The data is currently stored in either flat files or in simple Excel ...
5
votes
5answers
2k views

Can I specify a class wide group on a TestNG test case?

I have a base class that represents a database test in TestNG, and I want to specify that all classes extending from this class are of a group "db-test", however I have found that this doesn't seem ...
4
votes
2answers
86 views

Annotation attribute must be a class literal? Why? Constants should be fine too

Can someone explain why String and Class annotation parameters are expected differently? Why does the compiler require literals for Classes, wherby accepting constants for Strings as well? Working ...
4
votes
1answer
108 views

How can I get complete stacktraces for exceptions thrown in tests when using sbt and testng?

The stacktraces are truncated - e.g. they end with [info] ... Using last or changing traceLevel doesn't help - it simply prints the complete stacktrace of the sbt wrapper. This is testing with ...
4
votes
3answers
2k views

Question - Selenium Web Test Automation Framework Best Practices

I would like to know your comments on best practices developing web test automation framework I basically read couple of blogs and finally got convinced with david burns approach listed in book - ...
4
votes
3answers
224 views

How do I get the name of the test method that was run in a testng tear down method?

Basically I have a tear down method that I want to log to the console which test was just run. How would I go about getting that string? I can get the class name, but I want the actual method that ...
4
votes
1answer
4k views

NoSuchMethodError with Spring MutableValues

I have written a test where i specify my application context location with annotations. I then autowire my dao into the test. @ContextConfiguration(locations = ...
4
votes
7answers
4k views

How to create structured automatic testing with selenium (junit or testng)? What is your best practice for this?

I have written tests that are using selenium for functional testing. I'm using Java. I would like to be able to create structure between tests. Is it possible to do it with jUnit or TestNG? Would ...
4
votes
2answers
1k views

Possible to use TestNG DataProvider AND test suite Parameters?

Does anyone know if there is a way to use a TestNG DataProvider with a test at the same time as using the @Parameter annotation? Our test suites have some constant configuration information that is ...
4
votes
4answers
556 views

Timing out tests in TestNG

Thanks to a library upgrade (easymock 2.2 -> 2.4), we're having tests that have started locking up. I'd like to have a time out on individual tests, all of them. The idea is to identify the locked up ...
3
votes
2answers
49 views

Test-NG: turning a @BeforeClass into something else (@BeforeSuite maybe?)

For a project of mine, I need two properties to be set at the JVM level before running tests (with testng, as the subject says). Here is the code I use to enforce the presence of these two properties: ...
3
votes
1answer
35 views

Is there a way to get method meta data when using @BeforeMethod in testng?

I am using testng and have a suite of tests but I want to perform an action before every test method that requires information about the method. As a simple example say I want to print the name of the ...
3
votes
1answer
74 views

Testing thread concurrency with Spock

Is there a spock equivalent of TestNG's @Test(threadPoolSize=n) that will allow me test the execution of a test, with multiple threads concurrently? Basically, given a specification like so... class ...
3
votes
1answer
371 views

Passing arguments from Eclipse to TestNG

I am looking for a way to do a test method in TestNG such that when I click in a certain file in Eclipse and make Run -> TestNG, it will pass that selected file's full name and the test receives that ...
3
votes
1answer
499 views

TestNG: Eclipse confused by JUnit

I'm setting up tests with TestNG in an Eclipse project, but I get a strange error: When I try to generate a test class from a business class, I get a popup with a message saying "Grid not editable" ...
3
votes
1answer
235 views

How to run one test against multiple sites using selenium and testng

Given 3 webs applications under test with given urls: www.A.com www.B.com www.C.com How do i proceed to design a way using selenium to run a single testng test against these three browsers and ...
3
votes
1answer
142 views

Can I run all the TestNG tests that do not belong to any group (in Maven)?

Or in alternative formulation: Are tests in TestNG assigned to a default group if no group is specified, and if yes, what is the name of that default group? (Yes, I have read this post). I want to ...
3
votes
3answers
608 views

Drawbacks of TestNG compared to jUnit?

I'm familiar with jUnit, and heard TestNG might be a solution to some of jUnit's annoyences - e.g. its insistence to create a separate instance of the test class per test, thus forcing me to use ...
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
432 views

For TestNG, what is the proper method for pre-populating the data source containing a complex model when it will be queried using Hibernate?

I wish to write tests for our Seam Framework-based web site's internal search engine that uses Hibernate + Lucene indexing (on DB2) for queries. What is the best solution for populating the data ...
3
votes
2answers
165 views

Should this be a synchronized method?

I'm using TestNG to run tests in parallel and want to be careful about possible synchronization issues with helper classes and utilities. To my knowledge, each test is its own object, transparently ...
3
votes
1answer
6k views

java.lang.IllegalStateException: missing behavior definition for the preceding method call getMessage(“title”)

I'm using EasyMock(version 2.4) and TestNG for writing UnitTest. I have a following scenario and I cannot change the way class hierarchy is defined. I'm testing ClassB which is extending ClassA. ...
3
votes
5answers
3k views

order of execution of tests in testng

How to customize the order of execution of tests in testng ? For example: @Test public class Test1 { @Test public void test1() { System.out.println("test1"); } @Test public void ...
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
706 views

What are the default listeners in TestNG, and where do I find this list?

I was curious to know what the default listeners are in TestNG. I saw a bool property on the Ant task for useDefaultListeners but I would like to know what these are and where I can find them.
3
votes
3answers
2k views

Is it possible to use the TestNG plugin with Netbeans 6.8?

I downloaded the TestNG NetBeans Plugin and tried to install it in my NetBeans 6.8. I'm running NetBeans IDE 6.8 (Build 200912041610). When I click install, I get this message: Some plugins ...
3
votes
2answers
2k views

TestNG multithreaded test with Spring @Transactional

I am using TestNG to test persistence Spring modules (JPA+Hibernate) using AbstractTransactionalTestNGSpringContextTests as a base class. All important parts @Autowired, @TransactionConfiguration, ...
3
votes
1answer
219 views

Java unit test coverage numbers do not match

Below is a class I have written in a web application I am building using Java Google App Engine. I have written Unit Tests using TestNG and all the tests pass. I then run EclEmma in Eclipse to see the ...
3
votes
2answers
2k views

What is the best way to write a test case for RESTLET web services?

I have a JAX-RS web service implemented with Restlet library and now I want to test it. In order to do that I'd like to host this service in my test by preinitializing it with mocked services. What ...
3
votes
1answer
964 views

How do I use TestNG with Apache Ivy?

I tried to use TestNG with Apache Ivy, but was unsuccessful. Here is my ivy.xml: <ivy-module version="2.0"> <info organisation="me" module="myproject"/> <dependencies> ...
2
votes
1answer
26 views

Moving from JUnit to TestNG: how to convert @SuiteClasses?

I'm converting a bunch of test cases written for use with JUnit 4+ to use TestNG instead. I found that test class level annotations are mostly similar and can be replaced easily (for e.g. @Before => ...
2
votes
3answers
69 views

TestNG only running the first test in a suite

I have a testng.xml file with two tests: <!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd" > <suite name="XEP-0100" verbose="1"> <test name="Registration"> ...
2
votes
2answers
221 views

How to design Selenium 2 tests with the Page Object pattern using inheritance

We are now writing a new test suite using Selenium 2 (Webdriver) and TestNG. Our tests use the Page Object pattern and we are very happy with the the way things are looking so far. However, we ran ...
2
votes
1answer
75 views

Message body is garbled in Gmail

I guess it is first time I see Yahoo mail doing some thing with flying colors and Gmail failing at it. I must be missing some thing. I used ant mail task for automated delivery of test report - ...

1 2 3 4 5 8