1
0
Fork 0
mirror of https://github.com/friendica/friendica synced 2025-03-09 07:48:28 +00:00
friendica-github/tests/MockedTest.php

19 lines
252 B
PHP
Raw Normal View History

2018-11-01 13:44:47 +01:00
<?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();
}
}