1
0
Fork 0
mirror of https://github.com/friendica/friendica synced 2025-03-03 17:48:26 +00:00
friendica-github/tests/MockedTestCase.php
2024-12-14 07:55:22 +00:00

23 lines
422 B
PHP

<?php
// Copyright (C) 2010-2024, the Friendica project
// SPDX-FileCopyrightText: 2010-2024 the Friendica project
//
// SPDX-License-Identifier: AGPL-3.0-or-later
namespace Friendica\Test;
use PHPUnit\Framework\TestCase;
/**
* This class verifies each mock after each call
*/
abstract class MockedTestCase extends TestCase
{
protected function tearDown() : void
{
\Mockery::close();
parent::tearDown();
}
}