What is TestNG?
Definition of TestNG as per its documentation is as follows:
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 means Next Generation. TestNG is similar to JUnit (especially JUnit 4), but it is not a JUnit extension. It is inspired by JUnit. It is designed to be better than JUnit, especially when testing integrated classes. The creator of TestNG is Cedric Beust.
TestNG Features
- Supports annotations.
- TestNG uses more Java and OO features.
- Supports testing integrated classes (e.g., by default, no need to create a new test class instance for every test method).
- Separates compile-time test code from run-time configuration/data info.
- Flexible runtime configuration.
- Introduces ‘test groups’.
- Supports Dependent test methods, parallel testing, load testing, and partial failure.
Benefits of TestNG
There are number of benefits but from Selenium perspective, major advantages of TestNG;- It gives the ability to produce HTML Reports of execution
- Annotations made testers life easy
- Test cases can be Grouped & Prioritized more easily
- Parallel testing is possible
- Generates Logs
- Data Parameterization with DP provider
TestNG Environment :Make sure that java version about 1.6 installed in your machine if not install from here
http://www.oracle.com/technetwork/java/javase/downloads/index.htmlJava Environment :Next we need to set the JAVA environment that point to the base directory where JAVA installedOS Output Windows Set the environment variable JAVA_HOME to C:\Program Files\Java\jdk1.8.0_25. Linux Export JAVA_HOME=/usr/local/java-current. Mac Export JAVA_HOME=/Library/Java/Home. Make sure that eclipse is installed in your machine else download from here https://eclipse.org/downloads/Once installed eclipse now download / Configure TestNGOpen eclipse and go to help->Install new softwareIn install new software popup enter the url( http://beust.com/eclipse) and install TestNG as instructedOnce done restart eclipse and now check whether TestNG installed or notWithin eclipse right click and should be able to view TestNG option as shownHow to write Test Cases using TestNG.
Writing a test in TestNG is quite simple and basically involves following steps:Step 1 – Write the business logic of the testStep 2 – Insert TestNG annotations in the codeStep 3 – Add the information about your test (e.g. the class names, methods names, groups names etc…) in a testng.xml fileStep 4 – Run TestNG
Before this we need to understand what are annotations;
- It identifies the methods it is interested in by looking up annotations. Hence method names are not restricted to any pattern or format.
- We can pass additional parameters to annotations like (enabled=true etc..)
- Annotations are strongly typed, so the compiler will flag any mistakes right away.
@BeforeSuite: The annotated method will be run before all tests in this suite have run.@AfterSuite: The annotated method will be run after all tests in this suite have run.@BeforeTest: The annotated method will be run before any test method belonging to the classes inside the tag is run.@AfterTest: The annotated method will be run after all the test methods belonging to the classes inside the 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.@BeforeClass: The annotated method will be run before the first test method in the current class is invoked.@AfterClass: The annotated method will be run after all the test methods in the current class have been run.@BeforeMethod: The annotated method will be run before each test method.@AfterMethod: The annotated method will be run after each test method.@Test: The annotated method is a part of a test case.
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.