friendica-github/tests/FixtureTestCase.php
2024-12-14 07:55:22 +00:00

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();
}
}