1
0
Fork 0
mirror of https://github.com/friendica/friendica synced 2025-03-09 14:28:26 +00:00
friendica-github/tests/MockedTest.php
2018-11-01 13:44:47 +01:00

18 lines
252 B
PHP

<?php
namespace Friendica\Test;
use PHPUnit\Framework\TestCase;
/**
* This class verifies each mock after each call
*/
abstract class MockedTest extends TestCase
{
protected function tearDown()
{
\Mockery::close();
parent::tearDown();
}
}