mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-03 21:57:33 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			288 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			288 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace Tests\Unit;
 | 
						|
 | 
						|
use App\DataMapper\DefaultSettings;
 | 
						|
use App\Models\Client;
 | 
						|
use Tests\TestCase;
 | 
						|
 | 
						|
/**
 | 
						|
 * @test
 | 
						|
 */
 | 
						|
 | 
						|
class EvaluateStringTest extends TestCase
 | 
						|
{
 | 
						|
 | 
						|
	public function testClassNameResolution()
 | 
						|
	{
 | 
						|
		$this->assertEquals(class_basename(Client::class), 'Client');
 | 
						|
	}
 | 
						|
 | 
						|
} |