Testng - Quick Guide
Testng - Quick Guide
Testng - Quick Guide
Testing is the process of checking the functionality of the application whether it is working as per
requirements and to ensure that at developer level, unit testing comes into picture. Unit testing is
the testing of single entity classormethod. Unit testing is very essential to every software company to
give a quality product to their customers.
JUnit has driven developers to understand the usefulness of tests, especially of unit tests when
compared to any other testing framework. Leveraging a rather simple, pragmatic, and strict
architecture, JUnit has been able to "infect" great number of developers. Features of JUnit can be
seen in Junit Features.
Initially designed to enable unit testing only, now used for all kinds of testing.
Intrusive forcesyoutoextendclassesandnameyourmethodsacertainway.
The management of different suites of tests in complex projects can be very tricky..
What is TestNG?
Definition of TestNG as per its documentation is:
TestNG is a testing framework inspired from JUnit and NUnit but introducing some new
functionalities that make it more powerful and easier to use.
TestNG is an open source automated testing framework; where NG of TestNG means Next
Generation. TestNG is similar to JUnit especiallyJUnit4, but its not a JUnit extension. Its inspired by
JUnit. It is designed to be better than JUnit, especially when testing integrated classes. The creator
of TestNG is Cedric Beust.
TestNG eliminates most of the limitations of the older framework and gives the developer the
ability to write more flexible and powerful tests. As it heavily borrows from Java Annotations
introducedwithJDK5.0 to define tests, it can also show you how to use this new feature of the Java
language in a real production environment.
TestNG Features
Annotations.
Introduces ‘test groups’. Once you have compiled your tests, you can just ask TestNG to run
all the "front-end" tests, or "fast", "slow", "database", etc...
Supports Dependent test methods, parallel testing, load testing, partial failure.
System Requirement
OS Task Command
OS Output
If you do not have Java installed, install the Java Software Development Kit SDK from
http://www.oracle.com/technetwork/java/javase/downloads/index.html. We are assuming Java
1.7.0_25 as installed version for this tutorial.
OS Output
OS Output
OS Archive name
Windows testng-6.8.jar
Linux testng-6.8.jar
Mac testng-6.8.jar
OS Output
OS Output
import org.testng.annotations.Test;
import static org.testng.Assert.assertEquals;
With ant
Let us invoke using the testng.xml file. Create an xml file with name testng.xml in C:\ >
TestNG_WORKSPACE to execute Test cases.
C:\TestNG_WORKSPACE>javac TestNGSimpleTest.java
===============================================
Suite1
Total tests run: 1, Failures: 0, Skips: 0
===============================================
WRITING TESTS
Writing a test in TestNG basically involves following steps:
Write the business logic of your test and insert TestNG annotations in your code.
Add the information about your test e. g. theclassname, thegroupsyouwishtorun, etc. . . in a testng.xml
file or in build.xml..
Run TestNG.
Here, we will see one complete example of TestNG testing using POJO class, Business logic class
and a test xml, which will be run by TestNG.
/**
* @return the name
*/
public String getName() {
return name;
}
/**
* @param name the name to set
*/
public void setName(String name) {
this.name = name;
}
/**
* @return the monthlySalary
*/
public double getMonthlySalary() {
return monthlySalary;
}
/**
* @param monthlySalary the monthlySalary to set
*/
public void setMonthlySalary(double monthlySalary) {
this.monthlySalary = monthlySalary;
}
/**
* @return the age
*/
public int getAge() {
return age;
}
/**
* @param age the age to set
*/
public void setAge(int age) {
this.age = age;
}
}
import org.testng.Assert;
import org.testng.annotations.Test;
@Test
public void testCalculateAppriasal() {
employee.setName("Rajeev");
employee.setAge(25);
employee.setMonthlySalary(8000);
double appraisal = empBusinessLogic
.calculateAppraisal(employee);
Assert.assertEquals(500, appraisal, 0.0, "500");
}
Before you can run the tests, however, you must configure TestNG using a special XML file,
conventionally named testng.xml. The syntax for this file is very simple, and its contents as below.
Create this file in C:\ > TestNG_WORKSPACE:
A suite is represented by one XML file. It can contain one or more tests and is defined by the
<suite> tag.
Tag <test> represents one test and can contain one or more TestNG classes.
<class> tag represents a TestNG class is a Java class that contains at least one TestNG
annotation. It can contain one or more test methods.
If all has been done correctly, you should see the results of your tests in the console. Furthermore,
TestNG creates a very nice HTML report in a folder called test-output that is automatically
created in the current directory. If you open it and load index.html, you will see a page similar to
the one in the image below:
BASIC ANNOTATIONS
The traditional way to indicate test methods in JUnit 3 is by prefixing their name with test. This is a
very effective method for tagging certain methods in a class as having a special meaning, but the
naming doesn’t scale very well whatifwewanttoaddmoretagsfordifferentframeworks? and is rather inflexible
whatifwewanttopassadditionalparameterstothetestingframework?.
Annotations were formally added to the Java language in JDK 5 and TestNG made the choice to use
annotations to annotate test classes.
Annotation Description
@BeforeSuite The annotated method will be run only once before all tests in this suite
have run.
@AfterSuite The annotated method will be run only once after all tests in this suite have
run.
@BeforeClass The annotated method will be run only once before the first test method in
the current class is invoked.
@AfterClass The annotated method will be run only once after all the test methods in the
current class have been run.
@BeforeTest The annotated method will be run before any test method belonging to the
classes inside the <test> tag is run.
@AfterTest The annotated method will be run after all the test methods belonging to
the classes inside the <test> tag have run.
@BeforeGroups The list of groups that this configuration method will run before. This
method is guaranteed to run shortly before the first test method that
belongs to any of these groups is invoked.
@AfterGroups The list of groups that this configuration method will run after. This method
is guaranteed to run shortly after the last test method that belongs to any of
these groups is invoked.
@BeforeMethod The annotated method will be run before each test method.
@AfterMethod The annotated method will be run after each test method.
@DataProvider Marks a method as supplying data for a test method. The annotated method
must return an Object[][] where each Object[] can be assigned the
parameter list of the test method. The @Test method that wants to receive
data from this DataProvider needs to use a dataProvider name equals to the
name of this annotation.
@Factory Marks a method as a factory that returns objects that will be used by TestNG
as Test classes. The method must return Object[].
Annotations are strongly typed, so the compiler will flag any mistakes right away.
EXCECUTION PROCEDURE
This tutorial explains the execution procedure of methods in TestNG which means that which
method is called first and which one after that. Here is the execution procedure of the TestNG test
API methods with the example.
Create a java class file name TestngAnnotation.java in C:\ > TestNG_WORKSPACE to test
annotation.
import org.testng.annotations.Test;
import org.testng.annotations.BeforeMethod;
import org.testng.annotations.AfterMethod;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.AfterClass;
import org.testng.annotations.BeforeTest;
import org.testng.annotations.AfterTest;
import org.testng.annotations.BeforeSuite;
import org.testng.annotations.AfterSuite;
// test case 2
@Test
public void testCase2() {
System.out.println("in test case 2");
}
@BeforeMethod
public void beforeMethod() {
System.out.println("in beforeMethod");
}
@AfterMethod
public void afterMethod() {
System.out.println("in afterMethod");
}
@BeforeClass
public void beforeClass() {
System.out.println("in beforeClass");
}
@AfterClass
public void afterClass() {
System.out.println("in afterClass");
}
@BeforeTest
public void beforeTest() {
System.out.println("in beforeTest");
}
@AfterTest
public void afterTest() {
System.out.println("in afterTest");
}
@BeforeSuite
public void beforeSuite() {
System.out.println("in beforeSuite");
}
@AfterSuite
public void afterSuite() {
System.out.println("in afterSuite");
}
Next, let's create the file testng.xml in C:\ > TestNG_WORKSPACE to execute annotations.
C:\TestNG_WORKSPACE>javac TestngAnnotation.java
Now, run the testng.xml, which will run test case defined in provided Test Case class.
in beforeSuite
in beforeTest
in beforeClass
in beforeMethod
in test case 1
in afterMethod
in beforeMethod
in test case 2
in afterMethod
in afterClass
in afterTest
in afterSuite
===============================================
Suite
Total tests run: 2, Failures: 0, Skips: 0
===============================================
See the above output and this is how the TestNG execution procedure is:
Even the methods beforeTest, beforeClass, afterClass and afterTest methods are executed
only once.
beforeMethod method executes for each test case but before executing the test case.
afterMethod method executes for each test case but after the execution of test case.
EXECUTING TESTS
The test cases are executed using TestNG class. This class is the main entry point for running tests
in the TestNG framework. Users can create their own TestNG object and invoke it in many different
ways:
On an existing testng.xml
You can also define which groups to include or exclude, assign parameters, etc. The command line
parameters are:
-target
-groups
-testrunfactory
-listener
We will create the TestNG object an existing testng.xml in our example below.
Create a Class
Create a java class to be tested say MessageUtil.java in C:\ > TestNG_WORKSPACE
/*
* This class prints the given message on console.
*/
public class MessageUtil {
//Constructor
//@param message to be printed
public MessageUtil(String message){
this.message = message;
}
Implement the test condition and check the condition using assertEquals API of TestNG.
import org.testng.Assert;
import org.testng.annotations.Test;
@Test
public void testPrintMessage() {
Assert.assertEquals(message, messageUtil.printMessage());
}
}
Create testng.xml
Next, let's create testng.xml file in C:\ > TestNG_WORKSPACE to execute Test cases. This file
captures your entire testing in XML. This file makes it easy to describe all your test suites and their
parameters in one file, which you can check in your code repository or email to coworkers. It also
makes it easy to extract subsets of your tests or split several runtime configurations
e. g. , testng − database. xmlwouldrunonlyteststhatexerciseyourdatabase.
Now, run the testng.xml, which will run test case defined in <test> tag.
Hello World
===============================================
Sample test Suite
Total tests run: 1, Failures: 0, Skips: 0
===============================================
SUITE TESTS
A Test suite is a collection of test cases that are intended to test a behavior or set of behaviors of
software program. In TestNG, we cannot define a suite in testing source code, but it is represented
by one XML file as suite is the feature of execution. This also allows flexible configuration of the
tests to be run. A suite can contain one or more tests and is defined by the <suite> tag.
<suite> is a root tag of your testng.xml. It describes a test suite, which in turn is made of several
<test> sections.
Attribute Description
parallel Whether TestNG should run different threads to run this suite.
thread-count The number of threads to use,if parallel mode is enabled ignoredother − wise.
time-out The default timeout that will be used on all the test methods found in this test.
In this chapter we will show you an example having two Test1 & Test2 test classes to run together
using Test Suite.
Create a Class
Create a java class to be tested say MessageUtil.java in C:\ > JUNIT_WORKSPACE
/*
* This class prints the given message on console.
*/
public class MessageUtil {
private String message;
// Constructor
// @param message to be printed
public MessageUtil(String message) {
this.message = message;
}
import org.testng.Assert;
import org.testng.annotations.Test;
@Test
public void testPrintMessage() {
System.out.println("Inside testPrintMessage()");
Assert.assertEquals(message, messageUtil.printMessage());
}
}
import org.testng.Assert;
import org.testng.annotations.Test;
@Test
public void testSalutationMessage() {
System.out.println("Inside testSalutationMessage()");
message = "Hi!" + "Manisha";
Assert.assertEquals(message,messageUtil.salutationMessage());
}
}
Now, let's write the testng.xml in C:\ > TestNG_WORKSPACE which would contain the <suite>
tag as follows:
Now, run the testng.xml, which will run test case defined in provided Test Case class.
Inside testPrintMessage()
Manisha
Inside testSalutationMessage()
Hi!Manisha
===============================================
Suite1
Total tests run: 2, Failures: 0, Skips: 0
===============================================
IGNORE TESTS
Sometimes, it happens that our code is not ready and test case written to test that method/code
will fail if run. In such cases annotation @Testenabled = false helps to disable this test case.
A test method annotated with @Testenabled = false, then the test case that is not ready to test is
bypassed.
Create a Class
Create a java class to be tested say MessageUtil.java in C:\ > TestNG_WORKSPACE
/*
* This class prints the given message on console.
*/
public class MessageUtil {
//Constructor
//@param message to be printed
public MessageUtil(String message){
this.message = message;
}
import org.testng.Assert;
import org.testng.annotations.Test;
@Test(enabled = false)
public void testPrintMessage() {
System.out.println("Inside testPrintMessage()");
message = "Manisha";
Assert.assertEquals(message, messageUtil.printMessage());
}
@Test
public void testSalutationMessage() {
System.out.println("Inside testSalutationMessage()");
message = "Hi!" + "Manisha";
Assert.assertEquals(message, messageUtil.salutationMessage());
}
}
Create testng.xml
Create a testng.xml C:\ > TestNG_WORKSPACE to execute Test cases
Now, run the testng.xml, which will not run testPrintMessage test case defined in provided Test
Case class.
===============================================
Suite1
Total tests run: 1, Failures: 0, Skips: 0
===============================================
GROUP TEST
The group test is a new innovative feature in TestNG, it doesn’t exist in JUnit framework, it permits
you dispatch methods into proper portions and preform sophisticated groupings of test methods.
Not only can you declare those methods that belong to groups, but you can also specify groups
that contain other groups. Then, TestNG can be invoked and asked to include a certain set of
groups orregularexpressions while excluding another set. This gives you maximum flexibility in how you
partition your tests and doesn't require you to recompile anything if you want to run two different
sets of tests back to back.
Groups are specified in your testng.xml file using the <groups> tag. It can be found either under
the <test> or <suite> tag. Groups specified in the <suite> tag apply to all the <test> tags
underneath.
Create a Class
Create a java class to be tested say MessageUtil.java in C:\ > TestNG_WORKSPACE
/*
* This class prints the given message on console.
*/
public class MessageUtil {
private String message;
// Constructor
// @param message to be printed
public MessageUtil(String message) {
this.message = message;
}
Check-in tests checkintest: These tests should be run before you submit new code. They
should typically be fast and just make sure no basic functionality is broken.
Functional tests functest: These tests should cover all the functionalities of your software
and be run at least once a day, although ideally you would want to run them
continuously.
Create the java class file name GroupTestExample.java in C:\ > TestNG_WORKSPACE
import org.testng.Assert;
import org.testng.annotations.Test;
@Test(groups = { "checkintest" })
public void testSalutationMessage() {
System.out.println("Inside testSalutationMessage()");
message = "tutorialspoint" + ".com";
Assert.assertEquals(message, messageUtil.salutationMessage());
}
@Test(groups = { "functest" })
public void testingExitMessage() {
System.out.println("Inside testExitMessage()");
message = "www." + "tutorialspoint"+".com";
Assert.assertEquals(message, messageUtil.exitMessage());
}
}
Create testng.xml
Create a testng.xml C:\ > TestNG_WORKSPACE to execute Test cases. Here, we would be
executing only those tests which belong to the group functest.
Now, run the testng.xml, which will run only the method testPrintMessage as it belongs to the group
functest.
Inside testPrintMessage()
.com
Inside testExitMessage()
www..com
===============================================
Suite1
Total tests run: 2, Failures: 1, Skips: 0
===============================================
Groups of groups
Groups can also include other groups. These groups are called MetaGroups. For example, you
might want to define a group all that includes checkintest and functest. Let's modify our testng.xml
file as below:
Executing the above testng.xml will execute all the three tests and will give you the below result:
Inside testPrintMessage()
.com
Inside testSalutationMessage()
tutorialspoint.com
Inside testExitMessage()
www.tutorialspoint.com
===============================================
Suite1
Total tests run: 3, Failures: 0, Skips: 0
===============================================
Exclusion groups
You can ignore a group by using the <exclude> tag as shown below:
EXCEPTION TEST
TestNG provides a option of tracing the Exception handling of code. You can test whether a code
throws desired exception or not. The expectedExceptions parameter is used along with @Test
annotation. Now let's see @TestexpectedExceptions in action.
Create a Class
Create a java class to be tested say MessageUtil.java in C:\ > TestNG_WORKSPACE.
/*
* This class prints the given message on console.
*/
public class MessageUtil {
//Constructor
//@param message to be printed
public MessageUtil(String message){
this.message = message;
}
import org.testng.Assert;
import org.testng.annotations.Test;
Now, run the Test Runner which will run test cases defined in provided Test Case class.
Inside testPrintMessage()
Manisha
Inside testSalutationMessage()
Hi!Manisha
===============================================
Suite1
Total tests run: 2, Failures: 0, Skips: 0
===============================================
DEPENDENCY TEST
Sometimes, you may need to invoke methods in a Test case in a particular order or you want to
share some data and state between methods. This kind of dependency is supported by TestNG as it
supports the declaration of explicit dependencies between test methods.
Create a Class
Create a java class to be tested say MessageUtil.java in C:\ > TestNG_WORKSPACE
public class MessageUtil {
private String message;
// Constructor
// @param message to be printed
public MessageUtil(String message) {
this.message = message;
}
import org.testng.Assert;
import org.testng.annotations.Test;
@Test
public void testPrintMessage() {
System.out.println("Inside testPrintMessage()");
message = "Manisha";
Assert.assertEquals(message, messageUtil.printMessage());
}
@Test(dependsOnMethods = { "initEnvironmentTest" })
public void testSalutationMessage() {
System.out.println("Inside testSalutationMessage()");
message = "Hi!" + "Manisha";
Assert.assertEquals(message, messageUtil.salutationMessage());
}
@Test
public void initEnvironmentTest() {
System.out.println("This is initEnvironmentTest");
}
}
Create testng.xml
Create a testng.xml C:\ > TestNG_WORKSPACE to execute Test cases.
<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE suite SYSTEM "http://testng.org/testng-
1.0.dtd" >
<suite name="Suite1">
<test name="test1">
<classes>
<class name="DependencyTestUsingAnnotation" />
</classes>
</test>
</suite>
Now, run the testng.xml, which will run the testSalutationMessage method only after the execution
of initEnvironmentTest method.
This is initEnvironmentTest
Inside testPrintMessage()
Manisha
Inside testSalutationMessage()
Hi!Manisha
===============================================
Suite1
Total tests run: 3, Failures: 0, Skips: 0
===============================================
Create a Class
Create a java class to be tested say MessageUtil.java in C:\ > TestNG_WORKSPACE
// Constructor
// @param message to be printed
public MessageUtil(String message) {
this.message = message;
}
import org.testng.Assert;
import org.testng.annotations.Test;
@Test(groups = { "init" })
public void testPrintMessage() {
System.out.println("Inside testPrintMessage()");
message = "Manisha";
Assert.assertEquals(message, messageUtil.printMessage());
}
@Test(dependsOnGroups = { "init.*" })
public void testSalutationMessage() {
System.out.println("Inside testSalutationMessage()");
message = "Hi!" + "Manisha";
Assert.assertEquals(message, messageUtil.salutationMessage());
}
@Test(groups = { "init" })
public void initEnvironmentTest() {
System.out.println("This is initEnvironmentTest");
}
}
Create testng.xml
Create a testng.xml C:\ > TestNG_WORKSPACE to execute Test cases.
Now, run the testng.xml, which will run the testSalutationMessage method only after the execution
of initEnvironmentTest method.
This is initEnvironmentTest
Inside testPrintMessage()
Manisha
Inside testSalutationMessage()
Hi!Manisha
===============================================
Suite1
Total tests run: 3, Failures: 0, Skips: 0
===============================================
dependsOnGroups Vs dependsOnMethods
On using groups, we are no longer exposed to refactoring problems. as long as we don’t
modify the dependsOnGroups or groups attributes, our tests will keep running with the
proper dependencies set up.
Whenever a new method needs to be added in the dependency graph, all we need to do is
put it in the right group and make sure it depends on the correct group. We don’t need to
modify any other method.
PARAMETERIZED TEST
Another interesting feature available in TestNG is parametric testing. In most cases, you'll come
across a scenario where the business logic requires a hugely varying number of tests.
Parameterized tests allow developer to run the same test over and over again using different
values.
TestNG lets you pass parameters directly to your test methods in two different ways:
With testng.xml
Add test method parameterTest to your test class. This method takes a String as input
parameter.
Add the annotation @Parameters"myName" to this method. The parameter would be passed
values from testng.xml which we will see in the next step.
Create the java class file name ParameterizedTest1.java in C:\ > TestNG_WORKSPACE
import org.testng.annotations.Parameters;
import org.testng.annotations.Test;
public class ParameterizedTest1 {
@Test
@Parameters("myName")
public void parameterTest(String myName) {
System.out.println("Parameterized value is : " + myName);
}
}
Create testng.xml
Create a testng.xml C:\ > TestNG_WORKSPACE to execute Test cases.
We can also define the parameters at the <suite> level. Suppose we have defined
myName at both <suite> and <test>, levels then, in such cases regular scoping rules
apply. This means that any class inside <test> tag will see the value of parameter
defined in <test>, while the classes in the rest of the testng.xml file will see the value
defined in <suite>.
C:\TestNG_WORKSPACE>javac ParameterizedTest1.java
Now, run the testng.xml, which will run the parameterTest method. TestNG will try to find a
parameter named myName first in the <test> tag , and then, if it can’t find it, it searches in the
<suit> tag that encloses it.
===============================================
Suite1
Total tests run: 1, Failures: 0, Skips: 0
===============================================
TestNG will automatically try to convert the value specified in testng.xml to the type of your
parameter. Here are the types supported:
String
int/Integer
boolean/Boolean
byte/Byte
char/Character
double/Double
float/Float
long/Long
short/Short
Let us check out examples below of using Dataproviders. The first example is about
@DataProvider using Vector, String or Integer as parameter and the second example is about
@DataProvider using object as parameter
Example 1
Here, the @DataProvider passes Integer and Boolean as parameter.
Define the method primeNumbers which is defined as a Dataprovider using the annotation.
This method returns array of object array.
Add test method testPrimeNumberChecker to your test class. This method takes a Integer
and Boolean as input parameters. This method validates if the parameter passed is a prime
number.
Add the annotation @TestdataProvider = "test1" to this method. The attribute dataProvider is
mapped to "test1".
Create the java class file name ParamTestWithDataProvider1.java in C:\ > TestNG_WORKSPACE
import org.testng.Assert;
import org.testng.annotations.BeforeMethod;
import org.testng.annotations.DataProvider;
import org.testng.annotations.Test;
@BeforeMethod
public void initialize() {
primeNumberChecker = new PrimeNumberChecker();
}
@DataProvider(name = "test1")
public static Object[][] primeNumbers() {
return new Object[][] { { 2, true }, { 6, false }, { 19, true },
{ 22, false }, { 23, true } };
}
Create testng.xml
Create a testng.xml C:\ > TestNG_WORKSPACE to execute Test cases.
2 true
6 false
19 true
22 false
23 true
===============================================
Suite1
Total tests run: 5, Failures: 0, Skips: 0
===============================================
Example 2
Here, the @DataProvider passes Object as parameter.
Define the method primeNumbers which is defined as a Dataprovider using the annotation.
This method returns array of object array.
Add test method testMethod to your test class. This method takes object bean as parameter.
Add the annotation @TestdataProvider = "test1" to this method. The attribute dataProvider is
mapped to "test1".
Create the java class file name ParamTestWithDataProvider2.java in C:\ > TestNG_WORKSPACE
import org.testng.annotations.DataProvider;
import org.testng.annotations.Test;
@Test(dataProvider = "test1")
public void testMethod(Bean myBean) {
System.out.println(myBean.getVal() + " " + myBean.getI());
}
}
Create testng.xml
Create a testng.xml C:\ > TestNG_WORKSPACE to execute Test cases.
===============================================
Suite1
Total tests run: 1, Failures: 0, Skips: 0
===============================================
TestNG can automatically recognize and run JUnit tests, so you can use TestNG as a runner for all
your existing tests and write new tests using TestNG. All you have to do is to put JUnit library on the
TestNG classpath, so it can find and use JUnit classes, change your test runner from JUnit to TestNG
in Ant and then run TestNG in "mixed" mode. This way you can have all your tests in the same
project, even in the same package, and start using TestNG. This approach also allows you to
convert your existing JUnit tests to TestNG incrementally.
Let us see an example below and try out the above feature:
import org.junit.Test;
import static org.testng.AssertJUnit.assertEquals;
Now, let's write the testng.xml in C:\ > TestNG_WORKSPACE which would contain the <suite>
tag as follows:
To execute the Junit test cases define property junit="true" as in the xml above. The Junit test case
class TestJunit is defined in class name.
For Junit 4, TestNG will use the org.junit.runner.JUnitCore runner to run your tests.
Now, run the testng.xml, which will run Junit test case as TestNG.
===============================================
Converted JUnit suite
TEST RESULTS
Reporting is the most important part of any test execution, reason being it helps the user to
understand the result of the test execution, point of failure, and reasons for the failure. Logging, on
the other hand, is important to keep an eye on the execution flow or for debugging in case of any
failures.
TestNG by default generates a different type of report for its test execution. This includes an HTML
and an XML report output. TestNG also allows its users to write their own reporter and use it with
TestNG. There is also an option to write your own loggers, which are notified at runtime by TestNG.
Listeners : For implementing a listener class, the class has to implement the
org.testng.ITestListener interface. These classes are notified at runtime by TestNG when the
test starts, finishes, fails, skips, or passes.
The table below lists examples for different cases of reporting and logging:
Custom Logging This example illustrates how to write your own logger.
Custom Reporter This example illustrates how to write your own reporter.
HTML and XML This example illustrates the default HTML and XML report generated by
report TestNG.
JUnit Reports This example illustrates the about generating Junit reports from TestNG
reports.
OS Archive name
Windows apache-ant-1.8.4-bin.zip
Linux apache-ant-1.8.4-bin.tar.gz
Mac apache-ant-1.8.4-bin.tar.gz
OS Output
Append Ant compiler location to System Path is as follows for different OS:
OS Output
Windows Append the string ;%ANT_HOME\bin to the end of the system variable, Path.
OS Archive name
Windows testng-6.8.jar
Linux testng-6.8.jar
Mac testng-6.8.jar
Create MessageUtil class in C:\ > TestNG_WORKSPACE > TestNGWithAnt > src folder
/*
* This class prints the given message on console.
*/
public class MessageUtil {
//Constructor
//@param message to be printed
public MessageUtil(String message){
this.message = message;
}
Create TestMessageUtil class in C:\ > TestNG_WORKSPACE > TestNGWithAnt > src
folder
import org.testng.Assert;
import org.testng.annotations.Test;
@Test
public void testPrintMessage() {
System.out.println("Inside testPrintMessage()");
Assert.assertEquals(message,messageUtil.printMessage());
}
@Test
public void testSalutationMessage() {
System.out.println("Inside testSalutationMessage()");
message = "Hi!" + "Manisha";
Assert.assertEquals(message,messageUtil.salutationMessage());
}
}
Copy testng-6.8.jar in C:\ > TestNG_WORKSPACE > TestNGWithAnt > lib folder
Then, we'll be using <testng> task in Ant to execute our TestNG test cases.
C:\TestNG_WORKSPACE\TestNGWithAnt>ant
test:
[testng] [TestNG] Running:
[testng] C:\TestNG_WORKSPACE\TestNGWithAnt\src\testng.xml
[testng]
[testng] Inside testPrintMessage()
[testng] Manisha
[testng] Inside testSalutationMessage()
[testng] Hi!Manisha
[testng]
[testng] ===============================================
[testng] Plug ANT test Suite
[testng] Total tests run: 2, Failures: 0, Skips: 0
[testng] ===============================================
[testng]
BUILD SUCCESSFUL
Total time: 1 second
OS Archive name
Windows testng-6.8.jar
Linux testng-6.8.jar
Mac testng-6.8.jar
We assume that your eclipse has inbuilt TestNG plugin if it is not available then please get
the latest version using the update site:
In your eclipse IDE select Help / Software updates / Find and Install.
Make sure the check box next to URL is checked and click Next.
Now, your eclipse is ready for the development of TestNG test cases.
Step 3: Verify TestNG installation in Eclipse
Create a project TestNGProject in eclipse at any location.
/*
* This class prints the given message on console.
*/
public class MessageUtil {
//Constructor
//@param message to be printed
public MessageUtil(String message){
this.message = message;
}
import org.testng.Assert;
import org.testng.annotations.Test;
@Test
public void testPrintMessage() {
Assert.assertEquals(message,messageUtil.printMessage());
}
}
Finally, verify the output of the program by right click on program and run as TestNG.