From bd5d71e857f3f5709f8ba65fa34d913dc3fe0ef5 Mon Sep 17 00:00:00 2001 From: Jeroen De Dauw Date: Mon, 30 Apr 2018 15:54:38 +0200 Subject: [PATCH 1/2] Improve functional test workflow example The example used to be Arrange Act Assert Act Assert, rather than http://wiki.c2.com/?ArrangeActAssert --- testing.rst | 2 -- 1 file changed, 2 deletions(-) diff --git a/testing.rst b/testing.rst index e6f33ff4b3e..5eb64a2d70a 100644 --- a/testing.rst +++ b/testing.rst @@ -121,8 +121,6 @@ tests as far as PHPUnit is concerned, but they have a very specific workflow: * Make a request; * Test the response; -* Click on a link or submit a form; -* Test the response; * Rinse and repeat. Before creating your first test, install these packages that provide some of the From 0cd6ad88e676d5c7e53c1dbe216df4c8b7af4562 Mon Sep 17 00:00:00 2001 From: Javier Eguiluz Date: Thu, 24 May 2018 17:24:23 +0200 Subject: [PATCH 2/2] Reword --- testing.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/testing.rst b/testing.rst index 5eb64a2d70a..b4feab5f8a4 100644 --- a/testing.rst +++ b/testing.rst @@ -120,6 +120,7 @@ application (from the routing to the views). They are no different from unit tests as far as PHPUnit is concerned, but they have a very specific workflow: * Make a request; +* Click on a link or submit a form; * Test the response; * Rinse and repeat.