Book Image

TestNG Beginner's Guide

By : Varun Menon
Book Image

TestNG Beginner's Guide

By: Varun Menon

Overview of this book

<p>Unit/Functional testing has now become part of every development life cycle. Junit was once the main framework that was used by developers for the purpose of Unit testing when it came to Java. But Junit had certain limitations in terms of execution and features. This book explains about the features and usage of TestNg, a new framework that overcomes Junit’s limitations and provides a lot of extra features.</p> <p>TestNg Beginner’s Guide is a practical, hands-on guide that aims to increase your knowledge of TestNg. This step-by-step guide will help you to learn and understand the different TestNg features, and you will learn about the advantages and how to use and configure each feature according to your needs. <br /><br />This book explains the various features of the TestNG testing framework. It provides a step-by-step guide that explains the different features with practical examples and sample programs.You will also learn about how to use and configure each feature based on different test scenarios. We will also take a look at extending TestNG to add custom logging and test-reports. If you are a beginner in TestNG or test frameworks, then this book will help you in learning, practising, and getting started with TestNg.</p>
Table of Contents (21 chapters)
TestNg Beginner's Guide
Credits
About the Author
Acknowledgement
About the Reviewers
www.PacktPub.com
Preface
Index

Time for action – executing testng.xml using Eclipse


Perform the following steps for executing testng.xml using Eclipse:

  1. Open Eclipse and go to the project where we have created the testng.xml file.

  2. Select the testng.xml file, right-click on it, and select Run As | TestNG suite.

  3. Eclipse will execute the XML file as TestNG suite and you can see the following report in Eclipse:

Note

The preceding window may not be shown by default in Eclipse after execution and you may have to click on the window to see the results.

You can also use the Run Configuration option provided by Eclipse to customize your TestNG tests in Eclipse. Let's learn how to configure Eclipse to run testng XML files.