]> git.mxchange.org Git - friendica.git/blob - tests/MockedTest.php
Remove default from backend columns
[friendica.git] / tests / MockedTest.php
1 <?php
2
3 namespace Friendica\Test;
4
5 use PHPUnit\Framework\TestCase;
6
7 /**
8  * This class verifies each mock after each call
9  */
10 abstract class MockedTest extends TestCase
11 {
12         protected function tearDown()
13         {
14                 \Mockery::close();
15
16                 parent::tearDown();
17         }
18 }