1
0
mirror of https://github.com/flarum/core.git synced 2025-07-30 21:20:24 +02:00

Automatically set up Mockery for unit tests

- Use provided PhpUnit listener to enforce verification of expectations.
- Include Mockery's trait to auto-close Mockery after each test.
This commit is contained in:
Franz Liedke
2019-11-21 00:51:11 +01:00
parent 879b801600
commit 4f1adba387
7 changed files with 29 additions and 6 deletions

20
tests/unit/TestCase.php Normal file
View File

@@ -0,0 +1,20 @@
<?php
/*
* This file is part of Flarum.
*
* (c) Toby Zerner <toby.zerner@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Flarum\Tests\unit;
use Mockery\Adapter\Phpunit\MockeryPHPUnitIntegration;
abstract class TestCase extends \PHPUnit\Framework\TestCase
{
// Ensure Mockery is always torn down automatically after each test.
use MockeryPHPUnitIntegration;
}