mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-10 14:27:28 +01:00
19 lines
443 B
PHP
19 lines
443 B
PHP
|
<?php
|
||
|
|
||
|
namespace tests\Unit\Domain\FixtureManagement;
|
||
|
|
||
|
use PHPUnit\Framework\TestCase;
|
||
|
use Infinito\Domain\FixtureManagement\FixtureSource\GuestUserFixtureSource;
|
||
|
|
||
|
/**
|
||
|
* @author kevinfrantz
|
||
|
*/
|
||
|
class GuestUserFixtureSourceTest extends TestCase
|
||
|
{
|
||
|
public function testSlugName(): void
|
||
|
{
|
||
|
$fixtureSource = new GuestUserFixtureSource();
|
||
|
$this->assertNotEquals($fixtureSource->getName(), $fixtureSource::getSlug());
|
||
|
}
|
||
|
}
|