mirror of
https://github.com/werkraum-media/events.git
synced 2024-11-10 07:36:09 +01:00
28 lines
738 B
PHP
28 lines
738 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace WerkraumMedia\Events\Tests\Functional\Import\DestinationDataTest;
|
|
|
|
use WerkraumMedia\Events\Tests\Functional\AbstractFunctionalTestCase;
|
|
|
|
abstract class AbstractTestCase extends AbstractFunctionalTestCase
|
|
{
|
|
protected function setUp(): void
|
|
{
|
|
$this->coreExtensionsToLoad[] = 'filemetadata';
|
|
|
|
parent::setUp();
|
|
|
|
$this->importPHPDataSet(__DIR__ . '/Fixtures/Database/Structure.php');
|
|
}
|
|
|
|
protected function assertEmptyLog(): void
|
|
{
|
|
self::assertFileEquals(
|
|
__DIR__ . '/Assertions/EmptyLogFile.txt',
|
|
$this->getInstancePath() . '/typo3temp/var/log/typo3_0493d91d8e.log',
|
|
'Logfile was not empty.'
|
|
);
|
|
}
|
|
}
|