Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Hands-On Test Management with Jira

You're reading from   Hands-On Test Management with Jira End-to-end test management with Zephyr, synapseRT, and Jenkins in Jira

Arrow left icon
Product type Paperback
Published in Feb 2019
Publisher
ISBN-13 9781789954524
Length 264 pages
Edition 1st Edition
Languages
Tools
Arrow right icon
Author (1):
Arrow left icon
Afsana Atar Afsana Atar
Author Profile Icon Afsana Atar
Afsana Atar
Arrow right icon
View More author details
Toc

Table of Contents (19) Chapters Close

Preface 1. Section 1: Introduction to Software Quality Assurance FREE CHAPTER
2. An Overview of Software Quality Assurance 3. Section 2: Jira Environment - An Overview
4. Getting Started with Jira 5. Understanding Components of Testing with Jira 6. Section 3: Test Management - Manage and Plan
7. Test Management Approach 8. Test Planning 9. Section 4: Test Management - Design and Execute
10. Test Design Phase 11. Test Execution Phase 12. Defect Management Phase 13. Section 5: Test Management - Monitor and Control
14. Requirement Management 15. Test Execution Status Reporting 16. Section 6: Continuous Integration with Jira and Jenkins
17. Jira Integration with Automated Testing Tools 18. Other Books You May Enjoy

Example workflow to integrate and execute automated scripts

Now that we have configured our plugins to integrate with Jenkins, we now see an example of how the DevOps pipeline functions with each plugin. For this workflow, we use the following automated test script:

  1. Create a test automation code in Eclipse with a TestNG build script in XML. For this purpose, we have created the code in Java using Eclipse. We have created a new Java project in a new package named JenkinsDemoPkg with a class named demoJenkins. We also use JenkinsDemoPkg.demoJenkins: testJenkins to get the complete name of the class and method, which will be used for tracking in plugins:
package JenkinsDemoPkg;
import org.testng.annotations.Test;
public class demoJenkins {
@Test
public void testJenkins(){
System.out.println("Hello World");
}
}

Now, right...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime