@@ -80,7 +80,7 @@ To test a new library, **Foo**, you would create a new file at **tests/app/Libra
8080 }
8181 }
8282
83- To test one of your models, you might end up with something like this in `` tests/app/Models/OneOfMyModelsTest.php `` ::
83+ To test one of your models, you might end up with something like this in ** tests/app/Models/OneOfMyModelsTest.php ** ::
8484
8585 <?php
8686
@@ -203,7 +203,7 @@ Ensure that an event you expected to be triggered actually was::
203203
204204 $this->assertEventTriggered('foo');
205205
206- **assertHeaderEmitted($header, $ignoreCase= false) **
206+ **assertHeaderEmitted($header, $ignoreCase = false) **
207207
208208Ensure that a header or cookie was actually emitted::
209209
@@ -218,7 +218,7 @@ Ensure that a header or cookie was actually emitted::
218218Note: the test case with this should be `run as a separate process
219219in PHPunit <https://phpunit.readthedocs.io/en/7.4/annotations.html#runinseparateprocess> `_.
220220
221- **assertHeaderNotEmitted($header, $ignoreCase= false) **
221+ **assertHeaderNotEmitted($header, $ignoreCase = false) **
222222
223223Ensure that a header or cookie was not emitted::
224224
@@ -233,7 +233,7 @@ Ensure that a header or cookie was not emitted::
233233Note: the test case with this should be `run as a separate process
234234in PHPunit <https://phpunit.readthedocs.io/en/7.4/annotations.html#runinseparateprocess> `_.
235235
236- **assertCloseEnough($expected, $actual, $message= '', $tolerance= 1) **
236+ **assertCloseEnough($expected, $actual, $message = '', $tolerance = 1) **
237237
238238For extended execution time testing, tests that the absolute difference
239239between expected and actual time is within the prescribed tolerance.::
@@ -244,7 +244,7 @@ between expected and actual time is within the prescribed tolerance.::
244244
245245The above test will allow the actual time to be either 660 or 661 seconds.
246246
247- **assertCloseEnoughString($expected, $actual, $message= '', $tolerance= 1) **
247+ **assertCloseEnoughString($expected, $actual, $message = '', $tolerance = 1) **
248248
249249For extended execution time testing, tests that the absolute difference
250250between expected and actual time, formatted as strings, is within the prescribed tolerance.::
0 commit comments