SlideShare ist ein Scribd-Unternehmen logo
1 von 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

Weitere ähnliche Inhalte

Was ist angesagt?

Automation Testing using Selenium
Automation Testing using SeleniumAutomation Testing using Selenium
Automation Testing using SeleniumNaresh Chintalcheru
 
Test Automation and Selenium
Test Automation and SeleniumTest Automation and Selenium
Test Automation and SeleniumKarapet Sarkisyan
 
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!
 
TestNG - The Next Generation of Unit Testing
TestNG - The Next Generation of Unit TestingTestNG - The Next Generation of Unit Testing
TestNG - The Next Generation of Unit TestingBethmi Gunasekara
 
Introduction of TestNG framework and its benefits over Junit framework
Introduction of TestNG framework and its benefits over Junit frameworkIntroduction of TestNG framework and its benefits over Junit framework
Introduction of TestNG framework and its benefits over Junit frameworkBugRaptors
 
Automation - web testing with selenium
Automation - web testing with seleniumAutomation - web testing with selenium
Automation - web testing with seleniumTzirla Rozental
 
API Test Automation
API Test Automation API Test Automation
API Test Automation SQALab
 
Selenium test automation
Selenium test automationSelenium test automation
Selenium test automationSrikanth Vuriti
 
B4USolution_API-Testing
B4USolution_API-TestingB4USolution_API-Testing
B4USolution_API-Testingb4usolution .
 
RESTful API Testing using Postman, Newman, and Jenkins
RESTful API Testing using Postman, Newman, and JenkinsRESTful API Testing using Postman, Newman, and Jenkins
RESTful API Testing using Postman, Newman, and JenkinsQASymphony
 
TestNG introduction
TestNG introductionTestNG introduction
TestNG introductionDenis Bazhin
 
Selenium Training | TestNG Framework For Selenium | Selenium Tutorial For Beg...
Selenium Training | TestNG Framework For Selenium | Selenium Tutorial For Beg...Selenium Training | TestNG Framework For Selenium | Selenium Tutorial For Beg...
Selenium Training | TestNG Framework For Selenium | Selenium Tutorial For Beg...Edureka!
 
POST/CON 2019 Workshop: Testing, Automated Testing, and Reporting APIs with P...
POST/CON 2019 Workshop: Testing, Automated Testing, and Reporting APIs with P...POST/CON 2019 Workshop: Testing, Automated Testing, and Reporting APIs with P...
POST/CON 2019 Workshop: Testing, Automated Testing, and Reporting APIs with P...Postman
 
Hybrid automation framework
Hybrid automation frameworkHybrid automation framework
Hybrid automation frameworkdoai tran
 

Was ist angesagt? (20)

Hybrid framework
Hybrid frameworkHybrid framework
Hybrid framework
 
Junit
JunitJunit
Junit
 
Automation Testing using Selenium
Automation Testing using SeleniumAutomation Testing using Selenium
Automation Testing using Selenium
 
Test Automation and Selenium
Test Automation and SeleniumTest Automation and Selenium
Test Automation and Selenium
 
Data driven Automation Framework with Selenium
Data driven Automation Framework with Selenium Data driven Automation Framework with Selenium
Data driven Automation Framework with Selenium
 
QSpiders - Automation using Selenium
QSpiders - Automation using SeleniumQSpiders - Automation using Selenium
QSpiders - Automation using Selenium
 
TestNG - The Next Generation of Unit Testing
TestNG - The Next Generation of Unit TestingTestNG - The Next Generation of Unit Testing
TestNG - The Next Generation of Unit Testing
 
Introduction of TestNG framework and its benefits over Junit framework
Introduction of TestNG framework and its benefits over Junit frameworkIntroduction of TestNG framework and its benefits over Junit framework
Introduction of TestNG framework and its benefits over Junit framework
 
Automation Testing by Selenium Web Driver
Automation Testing by Selenium Web DriverAutomation Testing by Selenium Web Driver
Automation Testing by Selenium Web Driver
 
Automation - web testing with selenium
Automation - web testing with seleniumAutomation - web testing with selenium
Automation - web testing with selenium
 
API Test Automation
API Test Automation API Test Automation
API Test Automation
 
Selenium test automation
Selenium test automationSelenium test automation
Selenium test automation
 
B4USolution_API-Testing
B4USolution_API-TestingB4USolution_API-Testing
B4USolution_API-Testing
 
RESTful API Testing using Postman, Newman, and Jenkins
RESTful API Testing using Postman, Newman, and JenkinsRESTful API Testing using Postman, Newman, and Jenkins
RESTful API Testing using Postman, Newman, and Jenkins
 
TestNG introduction
TestNG introductionTestNG introduction
TestNG introduction
 
Rest assured
Rest assuredRest assured
Rest assured
 
Selenium Training | TestNG Framework For Selenium | Selenium Tutorial For Beg...
Selenium Training | TestNG Framework For Selenium | Selenium Tutorial For Beg...Selenium Training | TestNG Framework For Selenium | Selenium Tutorial For Beg...
Selenium Training | TestNG Framework For Selenium | Selenium Tutorial For Beg...
 
API Testing
API TestingAPI Testing
API Testing
 
POST/CON 2019 Workshop: Testing, Automated Testing, and Reporting APIs with P...
POST/CON 2019 Workshop: Testing, Automated Testing, and Reporting APIs with P...POST/CON 2019 Workshop: Testing, Automated Testing, and Reporting APIs with P...
POST/CON 2019 Workshop: Testing, Automated Testing, and Reporting APIs with P...
 
Hybrid automation framework
Hybrid automation frameworkHybrid automation framework
Hybrid automation framework
 

Andere mochten auch

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
 

Andere mochten auch (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
 
Introduction to Selenium Web Driver
Introduction to Selenium Web DriverIntroduction to Selenium Web Driver
Introduction to Selenium Web Driver
 
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
 

Ähnlich wie 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
 

Ähnlich wie testng (20)

Junit
JunitJunit
Junit
 
Testing with Junit4
Testing with Junit4Testing with Junit4
Testing with Junit4
 
Test ng
Test ngTest ng
Test ng
 
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
 

Kürzlich hochgeladen

Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
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
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?Antenna Manufacturer Coco
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsJoaquim Jorge
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
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
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 

Kürzlich hochgeladen (20)

Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
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
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
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
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 

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/