mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-13 05:47:11 +02:00
Optimized menu
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
<?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());
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user