SlideShare a Scribd company logo
1 of 22
TestNG 
Testing code as you write it 
Haritha K
What is TestNG 
A testing framework designed to simplify a 
broad range of development testing needs. 
• Unit testing (testing a class in isolation of the 
others) 
• Integration testing (testing entire systems 
made of several classes, several packages 
and even several external frameworks, such 
as application servers).
What is TestNG? 
• Automated testing framework 
• NG = Next Generation 
• Similar to JUnit (especially JUnit 4) 
• Not a JUnit extension (but inspired by JUnit) 
• Designed to be better than JUnit, especially 
when testing integrated classes 
• Created by Dr. Cédric Beust (of Google) 
• Open source (http://testng.org)
Installing in eclipse 
• The latest version of TestNG can be downloaded from 
http://search.maven.org/ 
• In Eclipse, Select Help / Software updates / Find and Install. 
• Search for new features to install. 
• New remote site. 
• For Eclipse 3.4 and above, enter http://beust.com/eclipse. 
• For Eclipse 3.3 and below, enter http://beust.com/eclipse1. 
• Make sure the check box next to URL is checked and 
click Next. 
• Eclipse will then guide you through the process and restart 
eclipse.
Basic Three steps 
• Write the business logic of your test and 
insert TestNG Annotations in your code. 
• Add the information about your test (e.g. the 
class name, the groups you wish to run, 
etc...) in a testng.xml file. 
• Run TestNG.
Keywords 
• A suite is represented by one XML file. It can contain 
one or more tests and is defined by the <suite> tag. 
• A test is represented by <test> and can contain one 
or more TestNG classes. 
• A TestNG class is a Java class that contains at least 
one TestNG annotation. It is represented by 
the <class> tag and can contain one or more test 
methods. 
• A test method is a Java method annotated 
by @Test in your source.
Possible configurations in xml file 
• Class names 
• Package names ( will execute all test classes) 
• Groups and methods (include/exclude) 
• run the tests in parallel, how many threads to use 
• TestNG will run your tests in the order they are found 
in the XML file. If you want the classes and methods 
listed in this file to be run in an unpredictable order, 
set the preserve-order attribute to false
Annotations 
@Test 
@BeforeSuite 
@AfterSuite 
@BeforeTest 
@AfterTest 
@BeforeGroups 
@AfterGroups 
@BeforeClass 
@AfterClass 
@BeforeMethod 
@AfterMethod 
@DataProvider 
@Parameters
Assertions 
• assertEquals 
• assertNotEquals 
• assertNotNull 
• assertNull 
• assertSame 
• assertNotSame 
• assertTrue 
• assertFalse 
• fail
Groups 
• Each test method is tagged with any number of groups. 
• @Test // no groups 
• @Test (groups = “group1”) 
• @Test (groups = { “g1”, “g2”, ... }) 
• A group therefore contains any number of test methods. 
• Groups can span classes. 
• Groups can also be externally defined (TestNG xml 
configuration file). 
• A group is identified by a unique string (don’t use white space). 
• There are no pre-defined group names. 
• E.g., “slow”, “fast”, “gui”, “check-in”, “week-end” 
“unit”,“regression”,“integration”,“broken.unknownReason”
Groups continued… 
• TestNG community suggests hierarchical 
names from more general to less. E.g.: 
• database.table.CUSTOMER 
• alarm.severity.cleared 
• Design group names so that you can select 
them with prefix patterns. 
• Groups complement other features
Groups continued… 
You can define groups at the class level and then add groups at 
the method level 
@Test(groups = { “goldenRegression" }) 
public class All { 
@Test(groups = { “regression" ) 
public void method1() { } 
public void method2() { ... }} 
In this class, method2() is part of the group “goldenRegression", 
which is defined at the class level, while method1() belongs to 
both “goldenRegression" and “regression".
Exceptions 
• Methods can have more than one 
exception thrown 
@Test(expectedExceptions = 
NullPointerException.class) 
Or 
@Test(expectedExceptions = 
{ T1.class, ... })
Ignored Test cases 
Enable or disable tests 
• @Test(enabled = false) 
• Add to a group which is excluded 
• Exclude in other ways in testng.xml
Timeout 
• @Test(timeOut = 1000) 
• testng.xml <suite|test> time-out attribute 
• The test case will be failed if time period is 
exceeded
Dependencies 
Sometimes, you need your test methods to 
be invoked in a certain order 
• To make sure a certain number of test 
methods have completed and succeeded 
before running more test methods. 
• To initialize your tests while wanting this 
initialization methods to be test methods as 
well.
Dependency continued 
• fail fast: 
• run Selenium tests only if application was deployed properly, 
• run full system tests only if smoke tests passed, 
• logical dependencies between tests: 
• execute shouldDeleteUserFromDatabase test only 
ifshouldAddUserToDatabase worked 
• Fail fast means that the feedback will be much quicker in case 
of failed tests. 
Logical dependencies gives you a much more realistic error 
information - you learn that 1 tests has failed and 99 has been 
skipped, which is much easier to fix than the information about 
100 failed tests (OMG! what’s going on!? All tests failed)
Parameterized tests 
• In general, it is a good practice, to test your 
code with different sets of parameters: 
• expected values: sqrt(4), sqrt(9), 
• boundary values: sqrt(0), 
• strange/unexpected values: sqrt(-1), sqrt(3)
Parameterized Tests continued 
• Parameterized tests are very simple with 
TestNG. 
• You can have as many data providers in one 
class as you wish. You can reuse them (call 
them from other classes), and you can make 
them "lazy", so each set of parameters is 
created when required.
Parameterized Tests continued 
@Parameters({ "datasource", "jdbcDriver" }) 
@BeforeMethod public void 
beforeTest(String ds, String driver) 
{ m_dataSource = ...; m_jdbcDriver = driver; } 
@DataProvider(name = "test1") 
public Iterator<Object[]> createData() 
{ return new MyIterator(DATA);}
References 
• http://testng.org/doc/index.html 
• http://testng.org/doc/documentation-main.html 
• http://testng.org/testng-1.0.dtd.php 
• http://testng.org/javadoc/
Thank you

More Related Content

What's hot

TestNG Annotations in Selenium | Edureka
TestNG Annotations in Selenium | EdurekaTestNG Annotations in Selenium | Edureka
TestNG Annotations in Selenium | EdurekaEdureka!
 
Test Automation and Selenium
Test Automation and SeleniumTest Automation and Selenium
Test Automation and SeleniumKarapet Sarkisyan
 
Automated Web Testing Using Selenium
Automated Web Testing Using SeleniumAutomated Web Testing Using Selenium
Automated Web Testing Using SeleniumWeifeng Zhang
 
JUnit & Mockito, first steps
JUnit & Mockito, first stepsJUnit & Mockito, first steps
JUnit & Mockito, first stepsRenato Primavera
 
Selenium test automation
Selenium test automationSelenium test automation
Selenium test automationSrikanth Vuriti
 
Unit Testing Concepts and Best Practices
Unit Testing Concepts and Best PracticesUnit Testing Concepts and Best Practices
Unit Testing Concepts and Best PracticesDerek Smith
 
Data driven Automation Framework with Selenium
Data driven Automation Framework with Selenium Data driven Automation Framework with Selenium
Data driven Automation Framework with Selenium Edureka!
 
Automation Testing using Selenium
Automation Testing using SeleniumAutomation Testing using Selenium
Automation Testing using SeleniumNaresh Chintalcheru
 
Test automation
Test automationTest automation
Test automationXavier Yin
 

What's hot (20)

Introduction to Selenium Web Driver
Introduction to Selenium Web DriverIntroduction to Selenium Web Driver
Introduction to Selenium Web Driver
 
TestNG Annotations in Selenium | Edureka
TestNG Annotations in Selenium | EdurekaTestNG Annotations in Selenium | Edureka
TestNG Annotations in Selenium | Edureka
 
JUNit Presentation
JUNit PresentationJUNit Presentation
JUNit Presentation
 
JUnit 5
JUnit 5JUnit 5
JUnit 5
 
Test Automation and Selenium
Test Automation and SeleniumTest Automation and Selenium
Test Automation and Selenium
 
Automated Web Testing Using Selenium
Automated Web Testing Using SeleniumAutomated Web Testing Using Selenium
Automated Web Testing Using Selenium
 
TestNG with selenium
TestNG with seleniumTestNG with selenium
TestNG with selenium
 
JUnit Presentation
JUnit PresentationJUnit Presentation
JUnit Presentation
 
JUnit & Mockito, first steps
JUnit & Mockito, first stepsJUnit & Mockito, first steps
JUnit & Mockito, first steps
 
Selenium Automation Framework
Selenium Automation  FrameworkSelenium Automation  Framework
Selenium Automation Framework
 
Selenium test automation
Selenium test automationSelenium test automation
Selenium test automation
 
Selenium
SeleniumSelenium
Selenium
 
Unit Testing Concepts and Best Practices
Unit Testing Concepts and Best PracticesUnit Testing Concepts and Best Practices
Unit Testing Concepts and Best Practices
 
Data driven Automation Framework with Selenium
Data driven Automation Framework with Selenium Data driven Automation Framework with Selenium
Data driven Automation Framework with Selenium
 
Unit Testing in Java
Unit Testing in JavaUnit Testing in Java
Unit Testing in Java
 
Automation Testing using Selenium
Automation Testing using SeleniumAutomation Testing using Selenium
Automation Testing using Selenium
 
Test automation
Test automationTest automation
Test automation
 
Test ng
Test ngTest ng
Test ng
 
TestNG vs Junit
TestNG vs JunitTestNG vs Junit
TestNG vs Junit
 
Automation Testing by Selenium Web Driver
Automation Testing by Selenium Web DriverAutomation Testing by Selenium Web Driver
Automation Testing by Selenium Web Driver
 

Viewers also liked

TestNG vs JUnit: cease fire or the end of the war
TestNG vs JUnit: cease fire or the end of the warTestNG vs JUnit: cease fire or the end of the war
TestNG vs JUnit: cease fire or the end of the warOleksiy Rezchykov
 
Hybrid Automation Framework
Hybrid Automation FrameworkHybrid Automation Framework
Hybrid Automation FrameworkASHIRVAD MISHRA
 
Web service testing_final.pptx
Web service testing_final.pptxWeb service testing_final.pptx
Web service testing_final.pptxvodqancr
 
Page object with selenide
Page object with selenidePage object with selenide
Page object with selenideCOMAQA.BY
 
Time to REST: testing web services
Time to REST: testing web servicesTime to REST: testing web services
Time to REST: testing web servicesIurii Kutelmakh
 
Heleen Kuipers - presentatie reinventing organisations
Heleen Kuipers - presentatie reinventing organisationsHeleen Kuipers - presentatie reinventing organisations
Heleen Kuipers - presentatie reinventing organisationsForzesNL
 
Creating a Java EE 7 Websocket Chat Application
Creating a Java EE 7 Websocket Chat ApplicationCreating a Java EE 7 Websocket Chat Application
Creating a Java EE 7 Websocket Chat ApplicationMicha Kops
 
Testing RESTful web services with REST Assured
Testing RESTful web services with REST AssuredTesting RESTful web services with REST Assured
Testing RESTful web services with REST AssuredBas Dijkstra
 

Viewers also liked (20)

Test ng for testers
Test ng for testersTest ng for testers
Test ng for testers
 
TestNg_Overview_Config
TestNg_Overview_ConfigTestNg_Overview_Config
TestNg_Overview_Config
 
Test ng tutorial
Test ng tutorialTest ng tutorial
Test ng tutorial
 
Selenium ppt
Selenium pptSelenium ppt
Selenium ppt
 
TestNG vs JUnit: cease fire or the end of the war
TestNG vs JUnit: cease fire or the end of the warTestNG vs JUnit: cease fire or the end of the war
TestNG vs JUnit: cease fire or the end of the war
 
TestNG vs. JUnit4
TestNG vs. JUnit4TestNG vs. JUnit4
TestNG vs. JUnit4
 
Test ng
Test ngTest ng
Test ng
 
Hybrid Automation Framework
Hybrid Automation FrameworkHybrid Automation Framework
Hybrid Automation Framework
 
Junit and testNG
Junit and testNGJunit and testNG
Junit and testNG
 
TestNG Data Binding
TestNG Data BindingTestNG Data Binding
TestNG Data Binding
 
Selenium Overview
Selenium OverviewSelenium Overview
Selenium Overview
 
Web service testing_final.pptx
Web service testing_final.pptxWeb service testing_final.pptx
Web service testing_final.pptx
 
Autoscalable open API testing
Autoscalable open API testingAutoscalable open API testing
Autoscalable open API testing
 
Coherent REST API design
Coherent REST API designCoherent REST API design
Coherent REST API design
 
Page object with selenide
Page object with selenidePage object with selenide
Page object with selenide
 
Time to REST: testing web services
Time to REST: testing web servicesTime to REST: testing web services
Time to REST: testing web services
 
Heleen Kuipers - presentatie reinventing organisations
Heleen Kuipers - presentatie reinventing organisationsHeleen Kuipers - presentatie reinventing organisations
Heleen Kuipers - presentatie reinventing organisations
 
Creating a Java EE 7 Websocket Chat Application
Creating a Java EE 7 Websocket Chat ApplicationCreating a Java EE 7 Websocket Chat Application
Creating a Java EE 7 Websocket Chat Application
 
Testing RESTful web services with REST Assured
Testing RESTful web services with REST AssuredTesting RESTful web services with REST Assured
Testing RESTful web services with REST Assured
 
Rest assured
Rest assuredRest assured
Rest assured
 

Similar to testng

Dev labs alliance top 20 testng interview questions for sdet
Dev labs alliance top 20 testng interview questions for sdetDev labs alliance top 20 testng interview questions for sdet
Dev labs alliance top 20 testng interview questions for sdetdevlabsalliance
 
Automated php unit testing in drupal 8
Automated php unit testing in drupal 8Automated php unit testing in drupal 8
Automated php unit testing in drupal 8Jay Friendly
 
20070514 introduction to test ng and its application for test driven gui deve...
20070514 introduction to test ng and its application for test driven gui deve...20070514 introduction to test ng and its application for test driven gui deve...
20070514 introduction to test ng and its application for test driven gui deve...Will Shen
 
.Net Unit Testing with Visual Studio 2010
.Net Unit Testing with Visual Studio 2010.Net Unit Testing with Visual Studio 2010
.Net Unit Testing with Visual Studio 2010kgayda
 
Unit Testng with PHP Unit - A Step by Step Training
Unit Testng with PHP Unit - A Step by Step TrainingUnit Testng with PHP Unit - A Step by Step Training
Unit Testng with PHP Unit - A Step by Step TrainingRam Awadh Prasad, PMP
 
Principles and patterns for test driven development
Principles and patterns for test driven developmentPrinciples and patterns for test driven development
Principles and patterns for test driven developmentStephen Fuqua
 
Software testing part
Software testing partSoftware testing part
Software testing partPreeti Mishra
 
Test automation principles, terminologies and implementations
Test automation principles, terminologies and implementationsTest automation principles, terminologies and implementations
Test automation principles, terminologies and implementationsSteven Li
 
Unit testing in Force.com platform
Unit testing in Force.com platformUnit testing in Force.com platform
Unit testing in Force.com platformChamil Madusanka
 
Java Unit Test - JUnit
Java Unit Test - JUnitJava Unit Test - JUnit
Java Unit Test - JUnitAktuğ Urun
 
When assertthat(you).understandUnitTesting() fails
When assertthat(you).understandUnitTesting() failsWhen assertthat(you).understandUnitTesting() fails
When assertthat(you).understandUnitTesting() failsMartin Skurla
 
Test case management with MTM 2013
Test case management with MTM 2013Test case management with MTM 2013
Test case management with MTM 2013Raluca Suditu
 
UNIT TESTING PPT
UNIT TESTING PPTUNIT TESTING PPT
UNIT TESTING PPTsuhasreddy1
 

Similar to testng (20)

Junit
JunitJunit
Junit
 
Testing with Junit4
Testing with Junit4Testing with Junit4
Testing with Junit4
 
Junit
JunitJunit
Junit
 
Introduction to JUnit
Introduction to JUnitIntroduction to JUnit
Introduction to JUnit
 
Dev labs alliance top 20 testng interview questions for sdet
Dev labs alliance top 20 testng interview questions for sdetDev labs alliance top 20 testng interview questions for sdet
Dev labs alliance top 20 testng interview questions for sdet
 
Automated php unit testing in drupal 8
Automated php unit testing in drupal 8Automated php unit testing in drupal 8
Automated php unit testing in drupal 8
 
20070514 introduction to test ng and its application for test driven gui deve...
20070514 introduction to test ng and its application for test driven gui deve...20070514 introduction to test ng and its application for test driven gui deve...
20070514 introduction to test ng and its application for test driven gui deve...
 
.Net Unit Testing with Visual Studio 2010
.Net Unit Testing with Visual Studio 2010.Net Unit Testing with Visual Studio 2010
.Net Unit Testing with Visual Studio 2010
 
Unit Testng with PHP Unit - A Step by Step Training
Unit Testng with PHP Unit - A Step by Step TrainingUnit Testng with PHP Unit - A Step by Step Training
Unit Testng with PHP Unit - A Step by Step Training
 
unit 1 (1).pptx
unit 1 (1).pptxunit 1 (1).pptx
unit 1 (1).pptx
 
Principles and patterns for test driven development
Principles and patterns for test driven developmentPrinciples and patterns for test driven development
Principles and patterns for test driven development
 
Unit testing
Unit testingUnit testing
Unit testing
 
Software testing part
Software testing partSoftware testing part
Software testing part
 
Unit testing
Unit testingUnit testing
Unit testing
 
Test automation principles, terminologies and implementations
Test automation principles, terminologies and implementationsTest automation principles, terminologies and implementations
Test automation principles, terminologies and implementations
 
Unit testing in Force.com platform
Unit testing in Force.com platformUnit testing in Force.com platform
Unit testing in Force.com platform
 
Java Unit Test - JUnit
Java Unit Test - JUnitJava Unit Test - JUnit
Java Unit Test - JUnit
 
When assertthat(you).understandUnitTesting() fails
When assertthat(you).understandUnitTesting() failsWhen assertthat(you).understandUnitTesting() fails
When assertthat(you).understandUnitTesting() fails
 
Test case management with MTM 2013
Test case management with MTM 2013Test case management with MTM 2013
Test case management with MTM 2013
 
UNIT TESTING PPT
UNIT TESTING PPTUNIT TESTING PPT
UNIT TESTING PPT
 

Recently uploaded

TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobeapidays
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUK Journal
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Enterprise Knowledge
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century educationjfdjdjcjdnsjd
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...apidays
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfhans926745
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProduct Anonymous
 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilV3cube
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdflior mazor
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAndrey Devyatkin
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 

Recently uploaded (20)

TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdf
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of Brazil
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 

testng

  • 1. TestNG Testing code as you write it Haritha K
  • 2. What is TestNG A testing framework designed to simplify a broad range of development testing needs. • Unit testing (testing a class in isolation of the others) • Integration testing (testing entire systems made of several classes, several packages and even several external frameworks, such as application servers).
  • 3. What is TestNG? • Automated testing framework • NG = Next Generation • Similar to JUnit (especially JUnit 4) • Not a JUnit extension (but inspired by JUnit) • Designed to be better than JUnit, especially when testing integrated classes • Created by Dr. Cédric Beust (of Google) • Open source (http://testng.org)
  • 4. Installing in eclipse • The latest version of TestNG can be downloaded from http://search.maven.org/ • In Eclipse, Select Help / Software updates / Find and Install. • Search for new features to install. • New remote site. • For Eclipse 3.4 and above, enter http://beust.com/eclipse. • For Eclipse 3.3 and below, enter http://beust.com/eclipse1. • Make sure the check box next to URL is checked and click Next. • Eclipse will then guide you through the process and restart eclipse.
  • 5. Basic Three steps • Write the business logic of your test and insert TestNG Annotations in your code. • Add the information about your test (e.g. the class name, the groups you wish to run, etc...) in a testng.xml file. • Run TestNG.
  • 6. Keywords • A suite is represented by one XML file. It can contain one or more tests and is defined by the <suite> tag. • A test is represented by <test> and can contain one or more TestNG classes. • A TestNG class is a Java class that contains at least one TestNG annotation. It is represented by the <class> tag and can contain one or more test methods. • A test method is a Java method annotated by @Test in your source.
  • 7. Possible configurations in xml file • Class names • Package names ( will execute all test classes) • Groups and methods (include/exclude) • run the tests in parallel, how many threads to use • TestNG will run your tests in the order they are found in the XML file. If you want the classes and methods listed in this file to be run in an unpredictable order, set the preserve-order attribute to false
  • 8. Annotations @Test @BeforeSuite @AfterSuite @BeforeTest @AfterTest @BeforeGroups @AfterGroups @BeforeClass @AfterClass @BeforeMethod @AfterMethod @DataProvider @Parameters
  • 9. Assertions • assertEquals • assertNotEquals • assertNotNull • assertNull • assertSame • assertNotSame • assertTrue • assertFalse • fail
  • 10. Groups • Each test method is tagged with any number of groups. • @Test // no groups • @Test (groups = “group1”) • @Test (groups = { “g1”, “g2”, ... }) • A group therefore contains any number of test methods. • Groups can span classes. • Groups can also be externally defined (TestNG xml configuration file). • A group is identified by a unique string (don’t use white space). • There are no pre-defined group names. • E.g., “slow”, “fast”, “gui”, “check-in”, “week-end” “unit”,“regression”,“integration”,“broken.unknownReason”
  • 11. Groups continued… • TestNG community suggests hierarchical names from more general to less. E.g.: • database.table.CUSTOMER • alarm.severity.cleared • Design group names so that you can select them with prefix patterns. • Groups complement other features
  • 12. Groups continued… You can define groups at the class level and then add groups at the method level @Test(groups = { “goldenRegression" }) public class All { @Test(groups = { “regression" ) public void method1() { } public void method2() { ... }} In this class, method2() is part of the group “goldenRegression", which is defined at the class level, while method1() belongs to both “goldenRegression" and “regression".
  • 13. Exceptions • Methods can have more than one exception thrown @Test(expectedExceptions = NullPointerException.class) Or @Test(expectedExceptions = { T1.class, ... })
  • 14. Ignored Test cases Enable or disable tests • @Test(enabled = false) • Add to a group which is excluded • Exclude in other ways in testng.xml
  • 15. Timeout • @Test(timeOut = 1000) • testng.xml <suite|test> time-out attribute • The test case will be failed if time period is exceeded
  • 16. Dependencies Sometimes, you need your test methods to be invoked in a certain order • To make sure a certain number of test methods have completed and succeeded before running more test methods. • To initialize your tests while wanting this initialization methods to be test methods as well.
  • 17. Dependency continued • fail fast: • run Selenium tests only if application was deployed properly, • run full system tests only if smoke tests passed, • logical dependencies between tests: • execute shouldDeleteUserFromDatabase test only ifshouldAddUserToDatabase worked • Fail fast means that the feedback will be much quicker in case of failed tests. Logical dependencies gives you a much more realistic error information - you learn that 1 tests has failed and 99 has been skipped, which is much easier to fix than the information about 100 failed tests (OMG! what’s going on!? All tests failed)
  • 18. Parameterized tests • In general, it is a good practice, to test your code with different sets of parameters: • expected values: sqrt(4), sqrt(9), • boundary values: sqrt(0), • strange/unexpected values: sqrt(-1), sqrt(3)
  • 19. Parameterized Tests continued • Parameterized tests are very simple with TestNG. • You can have as many data providers in one class as you wish. You can reuse them (call them from other classes), and you can make them "lazy", so each set of parameters is created when required.
  • 20. Parameterized Tests continued @Parameters({ "datasource", "jdbcDriver" }) @BeforeMethod public void beforeTest(String ds, String driver) { m_dataSource = ...; m_jdbcDriver = driver; } @DataProvider(name = "test1") public Iterator<Object[]> createData() { return new MyIterator(DATA);}
  • 21. References • http://testng.org/doc/index.html • http://testng.org/doc/documentation-main.html • http://testng.org/testng-1.0.dtd.php • http://testng.org/javadoc/