mirror of
https://github.com/werkraum-media/events.git
synced 2024-11-13 03:56:09 +01:00
Daniel Siepmann
c56a10b748
* Set ``alternative`` to the ``description`` if available. * Set ``creator_tool`` to the "destination.one". * Set ``source`` to the URL of the fetched image.
19 lines
436 B
PHP
19 lines
436 B
PHP
<?php
|
|
|
|
namespace Wrm\Events\Tests\Functional\Import\DestinationDataTest;
|
|
|
|
use Wrm\Events\Tests\Functional\AbstractFunctionalTestCase;
|
|
|
|
abstract class AbstractTest extends AbstractFunctionalTestCase
|
|
{
|
|
protected function setUp(): void
|
|
{
|
|
$this->coreExtensionsToLoad = [
|
|
'filemetadata',
|
|
];
|
|
|
|
parent::setUp();
|
|
|
|
$this->importPHPDataSet(__DIR__ . '/Fixtures/Database/Structure.php');
|
|
}
|
|
}
|