File tree 1 file changed +7
-1
lines changed
1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -117,6 +117,12 @@ Executing this test is as simple as running ``phpunit`` from the
117
117
118
118
$ phpunit
119
119
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
+
120
126
After the test ran, you should see a green bar. If not, you have a bug
121
127
either in the test or in the framework code!
122
128
@@ -170,7 +176,7 @@ coverage feature (you need to enable `XDebug`_ first):
170
176
171
177
.. code-block :: bash
172
178
173
- phpunit --coverage-html=cov/
179
+ $ phpunit --coverage-html=cov/
174
180
175
181
Open ``example.com/cov/src_Simplex_Framework.php.html `` in a browser and check
176
182
that all the lines for the Framework class are green (it means that they have
You can’t perform that action at this time.
0 commit comments