1
0
mirror of https://github.com/flarum/core.git synced 2025-08-01 14:10:37 +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

View File

@@ -13,8 +13,8 @@ namespace Flarum\Tests\unit\Settings;
use Flarum\Settings\MemoryCacheSettingsRepository;
use Flarum\Settings\SettingsRepositoryInterface;
use Flarum\Tests\unit\TestCase;
use Mockery as m;
use PHPUnit\Framework\TestCase;
class MemoryCacheSettingsRepositoryTest extends TestCase
{