Skip to content

Commit 54e1b08

Browse files
committed
added a note in part 8
1 parent f00401d commit 54e1b08

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

book/part08.rst

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,12 @@ Executing this test is as simple as running ``phpunit`` from the
117117
118118
$ phpunit
119119
120+
.. note::
121+
122+
I do not explain how the code works in details as this is not the goal of
123+
this series, but if you don't understand what the hell is going on, I
124+
highly recommend you to read PHPUnit documentation on `test doubles`_.
125+
120126
After the test ran, you should see a green bar. If not, you have a bug
121127
either in the test or in the framework code!
122128

@@ -170,7 +176,7 @@ coverage feature (you need to enable `XDebug`_ first):
170176

171177
.. code-block:: bash
172178
173-
phpunit --coverage-html=cov/
179+
$ phpunit --coverage-html=cov/
174180
175181
Open ``example.com/cov/src_Simplex_Framework.php.html`` in a browser and check
176182
that all the lines for the Framework class are green (it means that they have

0 commit comments

Comments
 (0)