mirror of
https://github.com/friendica/friendica
synced 2024-12-22 08:00:16 +00:00
30 lines
515 B
PHP
30 lines
515 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;
|
|
|
|
/**
|
|
* Parent class for test cases requiring fixtures
|
|
*/
|
|
abstract class FixtureTestCase extends MockedTestCase
|
|
{
|
|
use FixtureTestTrait;
|
|
|
|
protected function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
|
|
$this->setUpFixtures();
|
|
}
|
|
|
|
protected function tearDown(): void
|
|
{
|
|
$this->tearDownFixtures();
|
|
|
|
parent::tearDown();
|
|
}
|
|
}
|