mirror of
https://github.com/barryvdh/ReflectionDocBlock.git
synced 2026-08-18 10:07:12 +00:00
Fix tests
This commit is contained in:
committed by
Jaap van Otterdijk
parent
fd1a734d29
commit
7524aba21f
@@ -2,6 +2,7 @@
|
||||
|
||||
namespace phpDocumentor\Reflection\DocBlock;
|
||||
|
||||
use Mockery as m;
|
||||
use phpDocumentor\Reflection\DocBlock\Tags\Example;
|
||||
use PHPUnit\Framework\TestCase;
|
||||
|
||||
@@ -14,6 +15,14 @@ class ExampleFinderTest extends TestCase
|
||||
/** @var ExampleFinder */
|
||||
private $fixture;
|
||||
|
||||
/**
|
||||
* Call Mockery::close after each test.
|
||||
*/
|
||||
public function tearDown()
|
||||
{
|
||||
m::close();
|
||||
}
|
||||
|
||||
public function setUp()
|
||||
{
|
||||
$this->fixture = new ExampleFinder();
|
||||
|
||||
Reference in New Issue
Block a user