From a99e2d59de376c52f41ac3de6ee5bd52dda1bf3c Mon Sep 17 00:00:00 2001 From: HeahDude Date: Wed, 14 Mar 2018 21:21:46 +0100 Subject: [PATCH 1/2] Made explicit testing dependencies --- testing.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/testing.rst b/testing.rst index 43caae024e3..caaa56fc791 100644 --- a/testing.rst +++ b/testing.rst @@ -128,6 +128,12 @@ tests as far as PHPUnit is concerned, but they have a very specific workflow: * Test the response; * Rinse and repeat. +Before creating your first test, be sure the following packages are installed: + +.. code-block:: terminal + + $ composer require --dev symfony/browser-kit symfony/css-selector + Your First Functional Test ~~~~~~~~~~~~~~~~~~~~~~~~~~ From f67a47ab47f8295fbcf7b8055b8bcb1fee995e15 Mon Sep 17 00:00:00 2001 From: Javier Eguiluz Date: Tue, 20 Mar 2018 17:21:51 +0100 Subject: [PATCH 2/2] Minor reword --- testing.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/testing.rst b/testing.rst index caaa56fc791..bb1675d5fc0 100644 --- a/testing.rst +++ b/testing.rst @@ -128,7 +128,8 @@ tests as far as PHPUnit is concerned, but they have a very specific workflow: * Test the response; * Rinse and repeat. -Before creating your first test, be sure the following packages are installed: +Before creating your first test, install these packages that provide some of the +utilities used in the functional tests: .. code-block:: terminal