Magento 2.1.18 is the final 2.1.x release. After June 2019, Magento 2.1.x will no longer receive security patches, quality fixes, or documentation updates.
To maintain your site's performance, security, and PCI compliance, upgrade to the latest version of Magento.

Create a test in the Functional Testing Framework

The Magento testing framework (FTF) works with functional tests only. Functional tests check that an application meets business requirements. These requirements usually are collected in the functional specifications that describe expected behavior of the application.

Tests usually cover functionality of a business entity. A goal is to find discrepancies between expected and real behavior of the product. Magento provides functional tests in the <magento2_root_dir>/dev/tests/functional/ directory. In this guide, we call them out-of-the-box tests. You can use them to test the default Magento functionality. Also, you can create a test extending from the out-of-the-box test, or create your own functional tests.

Out-of-the-box test

New functional test: Theory

New functional test: Practice

Updated