File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -333,20 +333,26 @@ public function __construct(string $name)
333
333
334
334
/**
335
335
* This method is called before the first test of this test class is run.
336
+ *
337
+ * @codeCoverageIgnore
336
338
*/
337
339
public static function setUpBeforeClass (): void
338
340
{
339
341
}
340
342
341
343
/**
342
344
* This method is called after the last test of this test class is run.
345
+ *
346
+ * @codeCoverageIgnore
343
347
*/
344
348
public static function tearDownAfterClass (): void
345
349
{
346
350
}
347
351
348
352
/**
349
353
* This method is called before each test.
354
+ *
355
+ * @codeCoverageIgnore
350
356
*/
351
357
protected function setUp (): void
352
358
{
@@ -356,6 +362,8 @@ protected function setUp(): void
356
362
* Performs assertions shared by all tests of a test case.
357
363
*
358
364
* This method is called between setUp() and test.
365
+ *
366
+ * @codeCoverageIgnore
359
367
*/
360
368
protected function assertPreConditions (): void
361
369
{
@@ -365,13 +373,17 @@ protected function assertPreConditions(): void
365
373
* Performs assertions shared by all tests of a test case.
366
374
*
367
375
* This method is called between test and tearDown().
376
+ *
377
+ * @codeCoverageIgnore
368
378
*/
369
379
protected function assertPostConditions (): void
370
380
{
371
381
}
372
382
373
383
/**
374
384
* This method is called after each test.
385
+ *
386
+ * @codeCoverageIgnore
375
387
*/
376
388
protected function tearDown (): void
377
389
{
You can’t perform that action at this time.
0 commit comments