mirror of
				https://github.com/kevinveenbirkenbach/infinito.git
				synced 2025-11-04 03:07:58 +00: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());
 | 
						|
    }
 | 
						|
}
 |