mirror of
https://github.com/friendica/friendica
synced 2024-11-09 17:02:54 +00:00
23 lines
418 B
PHP
23 lines
418 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 MockedTest extends TestCase
|
|
{
|
|
protected function tearDown() : void
|
|
{
|
|
\Mockery::close();
|
|
|
|
parent::tearDown();
|
|
}
|
|
}
|