Skip to content

Commit

Permalink
Update book/testing.rst
Browse files Browse the repository at this point in the history
  • Loading branch information
Christoph Nißle authored and weaverryan committed Feb 20, 2012
1 parent 6b65b80 commit a75206c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions book/testing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ command:
$ phpunit -c app/
The ``-c`` option tells PHPUnit to look in the ``app/`` directory for a configuration
file. If you're curious about how the PHPUnit options, check out the ``app/phpunit.xml.dist``
file. If you're curious about the PHPUnit options, check out the ``app/phpunit.xml.dist``
file.

.. tip::
Expand Down Expand Up @@ -287,7 +287,7 @@ document::
Working with the Test Client
-----------------------------

The test Client simulates an HTTP client like a browser and makes requests
The Test Client simulates an HTTP client like a browser and makes requests
into your Symfony2 application::

$crawler = $client->request('GET', '/hello/Fabien');
Expand Down Expand Up @@ -485,9 +485,9 @@ Many other methods are also available:
+------------------------+----------------------------------------------------+
| ``previousAll()`` | All preceding siblings |
+------------------------+----------------------------------------------------+
| ``parents()`` | Parent nodes |
| ``parents()`` | Returns the parent nodes |
+------------------------+----------------------------------------------------+
| ``children()`` | Children |
| ``children()`` | Returns children nodes |
+------------------------+----------------------------------------------------+
| ``reduce($lambda)`` | Nodes for which the callable does not return false |
+------------------------+----------------------------------------------------+
Expand Down

0 comments on commit a75206c

Please sign in to comment.