Renamed domain FixtureManagement to Fixture

This commit is contained in:
Kevin Frantz
2019-05-30 16:10:09 +02:00
parent 1e166cf199
commit 8307016460
29 changed files with 54 additions and 54 deletions

View File

@@ -0,0 +1,18 @@
<?php
namespace tests\Unit\Domain\Fixture;
use PHPUnit\Framework\TestCase;
use Infinito\Domain\Fixture\FixtureSource\GuestUserFixtureSource;
/**
* @author kevinfrantz
*/
class GuestUserFixtureSourceTest extends TestCase
{
public function testSlugName(): void
{
$fixtureSource = new GuestUserFixtureSource();
$this->assertNotEquals($fixtureSource->getName(), $fixtureSource::getSlug());
}
}