search
Subscription
0
cart
close
You have no products in your basket yet
left
Tech Categories
Tech Categories
Data Web Development Programming Cloud and Networking Security Game Development Mobile IoT and Hardware Business and Other
Best Sellers
Tech Categories
Data Web Development Programming Cloud and Networking Security Game Development Mobile IoT and Hardware Business and Other
Best Sellers
New Releases
Tech Categories
Data Web Development Programming Cloud and Networking Security Game Development Mobile IoT and Hardware Business and Other
New Releases
Books
Tech Categories
Data Web Development Programming Cloud and Networking Security Game Development Mobile IoT and Hardware Business and Other
Popular Books
Videos
Tech Categories
Data Web Development Programming Cloud and Networking Security Game Development Mobile IoT and Hardware Business and Other
Popular Videos
Audiobooks
Tech Categories
Data Web Development Programming Cloud and Networking Security Game Development Mobile IoT and Hardware Business and Other
Popular Audiobooks
Articles
Newsletters
right
Automated Testing in Microsoft Dynamics 365 Business Central - Second Edition

Automated Testing in Microsoft Dynamics 365 Business Central: Efficiently automate test cases for faster development cycles with less time needed for manual testing, Second Edition

$41.99 $28.99
Book Dec 2021 406 pages 2nd Edition
eBook
$41.99 $28.99
Print
$51.99
Subscription
$15.99 Monthly
eBook
$41.99 $28.99
Print
$51.99
Subscription
$15.99 Monthly

What do you get with eBook?

Feature icon Instant access to your Digital eBook purchase
Feature icon Download this book in EPUB and PDF formats
Feature icon Access this title in our online reader with advanced features
Feature icon DRM FREE - Read whenever, wherever and however you want
Buy Now

Product Details


Publication date : Dec 10, 2021
Length 406 pages
Edition : 2nd Edition
Language : English
ISBN-13 : 9781801816427
Vendor :
Microsoft
Category :
toc View table of contents toc Preview Book toc Download Code

Key benefits

  • Leverage automated testing to advance over traditional manual testing methods
  • Write, design, and implement automated tests
  • Explore various testing frameworks and tools compatible with Microsoft Dynamics 365 Business Central

Description

Dynamics 365 Business Central is a cloud-based SaaS ERP proposition from Microsoft. With development practices becoming more formal, implementing changes or new features is not as simple as it used to be back when Dynamics 365 Business Central was called Navigator, Navision Financials, or Microsoft Business Solutions-Navision, and the call for test automation is increasing. This book will show you how to leverage the testing tools available in Dynamics 365 Business Central to perform automated testing. Starting with a quick introduction to automated testing and test-driven development (TDD), you'll get an overview of test automation in Dynamics 365 Business Central. You'll then learn how to design and build automated tests and explore methods to progress from requirements to application and testing code. Next, you'll find out how you can incorporate your own as well as Microsoft tests into your development practice. With the addition of three new chapters, this second edition covers in detail how to construct complex scenarios, write testable code, and test processes with incoming and outgoing calls. By the end of this book, you'll be able to write your own automated tests for Microsoft Business Central.

What you will learn

Understand the why and when of automated testing Discover how test-driven development can help to improve automated testing Explore the six pillars of the Testability Framework of Business Central Design and write automated tests for Business Central Make use of standard automated tests and their helper libraries Understand the challenges in testing features that interact with the external world Integrate automated tests into your development practice

What do you get with eBook?

Feature icon Instant access to your Digital eBook purchase
Feature icon Download this book in EPUB and PDF formats
Feature icon Access this title in our online reader with advanced features
Feature icon DRM FREE - Read whenever, wherever and however you want
Buy Now

Product Details


Publication date : Dec 10, 2021
Length 406 pages
Edition : 2nd Edition
Language : English
ISBN-13 : 9781801816427
Vendor :
Microsoft
Category :

Table of Contents

22 Chapters
Preface Packt Packt
Preface
Who this book is for
What this book covers
To get the most out of this book
Download the example code files
Get the color images
Conventions used
Get in touch
Share Your Thoughts
Section 1: Automated Testing – A General Overview Packt Packt
Section 1: Automated Testing – A General Overview
Chapter 1: Introduction to Automated Testing Packt Packt
Chapter 1: Introduction to Automated Testing
Why automated testing?
When to use automated testing?
What is automated testing?
Summary
Chapter 2: Test Automation and Test-Driven Development Packt Packt
Chapter 2: Test Automation and Test-Driven Development
TA versus TDD
What is TDD?
TDD and Microsoft Dynamics 365 Business Central
TDD – inside-out or outside-in
Summary
Further reading
Section 2:Automated Testing in Microsoft Dynamics 365 Business Central Packt Packt
Section 2:Automated Testing in Microsoft Dynamics 365 Business Central
Chapter 3: The Testability Framework Packt Packt
Chapter 3: The Testability Framework
Technical requirements
The five pillars of the testability framework
Summary
Chapter 4: The Test Tools, Standard Tests, and Standard Test Libraries Packt Packt
Chapter 4: The Test Tools, Standard Tests, and Standard Test Libraries
Technical requirements
Test Tools
Standard tests
Standard libraries
Summary
Section 3:Designing and Building Automated Tests for Microsoft Dynamics 365 Business Central Packt Packt
Section 3:Designing and Building Automated Tests for Microsoft Dynamics 365 Business Central
Chapter 5: Test Plan and Test Design Packt Packt
Chapter 5: Test Plan and Test Design
No plan, no test
Setting up a test plan
Test case design patterns
Test data setup design patterns
Using customer wish as test plan
And what about unit and functional tests?
Summary
Further reading
Chapter 6: From Customer Wish to Test Automation – the Basics Packt Packt
Chapter 6: From Customer Wish to Test Automation – the Basics
Technical requirements
From customer wish to test automation
Test example 1 – a first headless test
Test example 2 – a first positive-negative test
Test example 3 – a first UI test
Headless versus UI
Summary
Chapter 7: From Customer Wish to Test Automation – Next Level Packt Packt
Chapter 7: From Customer Wish to Test Automation – Next Level
Technical requirements
Sales documents, customer template, and warehouse shipment
Test example 4 – how to set up a shared fixture
Test example 5 – how to parameterize tests
Test example 6 – how to hand over data to UI handlers
Summary
Chapter 8: From Customer Wish to Test Automation – the TDD way Packt Packt
Chapter 8: From Customer Wish to Test Automation – the TDD way
Technical requirements
TDD and our test examples
Test example 7 – how to refactor your code
Test example 8 – how to test a report
Test example 9 – how to test with permissions
Summary
Section 4:Integrating Automated Tests in Your Daily Development Practice Packt Packt
Section 4:Integrating Automated Tests in Your Daily Development Practice
Chapter 9: How to Integrate Test Automation in Daily Development Practice Packt Packt
Chapter 9: How to Integrate Test Automation in Daily Development Practice
Technical requirements
Casting the customer wish into ATDD scenarios
Learning and improving by taking small steps
Making the test tool, and some more, your friend
Maintaining your test code
Organizing your extensions
Integrating with the daily build system
Summary
Chapter 10: Getting Business Central Standard Tests Working on Your Code Packt Packt
Chapter 10: Getting Business Central Standard Tests Working on Your Code
Technical requirements
Why use the standard tests?
Executing standard tests against your code
Fixing failing standard tests
Disabling failing tests
It's all about data
Is it all really about data?
Summary
Section 5:Advanced Topics Packt Packt
Section 5:Advanced Topics
Chapter 11: How to Construct Complex Scenarios Packt Packt
Chapter 11: How to Construct Complex Scenarios
Technical requirements
What makes a scenario complex?
Composing complex scenarios
Creating reusable parts
Test example 10 – how to construct an extensive scenario
Summary
Chapter 12: Writing Testable Code Packt Packt
Chapter 12: Writing Testable Code
Technical requirements
What is testable code?
How to make your code testable?
Test example 11 – how to unit test event subscribers' logic
Summary
Further reading
Chapter 13: Testing Incoming and Outgoing Calls Packt Packt
Chapter 13: Testing Incoming and Outgoing Calls
Technical requirements
Testing incoming calls
Testing outgoing calls
Test example 12 – testing incoming calls: Lookup Value API
Test example 13 – VAT Registration No. validation
Summary
Section 6:Appendix Packt Packt
Section 6:Appendix
Other Books You May Enjoy Packt Packt
Other Books You May Enjoy
Packt is searching for authors like you
Share Your Thoughts
Appendix: Getting Up and Running with Business Central, VS Code, and the GitHub Project Packt Packt
Appendix: Getting Up and Running with Business Central, VS Code, and the GitHub Project
Setting up your Business Central environment
The GitHub repository
Setting up VS Code
Notes on the AL code
Why subscribe?
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQS

How do I buy and download an eBook? Packt Packt

Where there is an eBook version of a title available, you can buy it from the book details for that title. Add either the standalone eBook or the eBook and print book bundle to your shopping cart. Your eBook will show in your cart as a product on its own. After completing checkout and payment in the normal way, you will receive your receipt on the screen containing a link to a personalised PDF download file. This link will remain active for 30 days. You can download backup copies of the file by logging in to your account at any time.

If you already have Adobe reader installed, then clicking on the link will download and open the PDF file directly. If you don't, then save the PDF file on your machine and download the Reader to view it.

Please Note: Packt eBooks are non-returnable and non-refundable.

Packt eBook and Licensing When you buy an eBook from Packt Publishing, completing your purchase means you accept the terms of our licence agreement. Please read the full text of the agreement. In it we have tried to balance the need for the ebook to be usable for you the reader with our needs to protect the rights of us as Publishers and of our authors. In summary, the agreement says:

  • You may make copies of your eBook for your own use onto any machine
  • You may not pass copies of the eBook on to anyone else
How can I make a purchase on your website? Packt Packt

If you want to purchase a video course, eBook or Bundle (Print+eBook) please follow below steps:

  1. Register on our website using your email address and the password.
  2. Search for the title by name or ISBN using the search option.
  3. Select the title you want to purchase.
  4. Choose the format you wish to purchase the title in; if you order the Print Book, you get a free eBook copy of the same title. 
  5. Proceed with the checkout process (payment to be made using Credit Card, Debit Cart, or PayPal)
Where can I access support around an eBook? Packt Packt
  • If you experience a problem with using or installing Adobe Reader, the contact Adobe directly.
  • To view the errata for the book, see www.packtpub.com/support and view the pages for the title you have.
  • To view your account details or to download a new copy of the book go to www.packtpub.com/account
  • To contact us directly if a problem is not resolved, use www.packtpub.com/contact-us
What eBook formats do Packt support? Packt Packt

Our eBooks are currently available in a variety of formats such as PDF and ePubs. In the future, this may well change with trends and development in technology, but please note that our PDFs are not Adobe eBook Reader format, which has greater restrictions on security.

You will need to use Adobe Reader v9 or later in order to read Packt's PDF eBooks.

What are the benefits of eBooks? Packt Packt
  • You can get the information you need immediately
  • You can easily take them with you on a laptop
  • You can download them an unlimited number of times
  • You can print them out
  • They are copy-paste enabled
  • They are searchable
  • There is no password protection
  • They are lower price than print
  • They save resources and space
What is an eBook? Packt Packt

Packt eBooks are a complete electronic version of the print edition, available in PDF and ePub formats. Every piece of content down to the page numbering is the same. Because we save the costs of printing and shipping the book to you, we are able to offer eBooks at a lower cost than print editions.

When you have purchased an eBook, simply login to your account and click on the link in Your Download Area. We recommend you saving the file to your hard drive before opening it.

For optimal viewing of our eBooks, we recommend you download and install the free Adobe Reader version 9.