mirror of
https://github.com/flarum/core.git
synced 2025-07-26 03:01:22 +02:00
Move test infrastructure to Testing namespace in src directory
This commit is contained in:
18
php-packages/testing/src/unit/TestCase.php
Normal file
18
php-packages/testing/src/unit/TestCase.php
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of Flarum.
|
||||
*
|
||||
* For detailed copyright and license information, please view the
|
||||
* LICENSE file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Flarum\Testing\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;
|
||||
}
|
Reference in New Issue
Block a user