mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-04 03:29:03 -05:00 
			
		
		
		
	* Datamapping JSON Settings * JSON Mapping * User Setting Defaults * Testing Json Mapper * Implemented User Settings - hydrated from JSON format
		
			
				
	
	
		
			17 lines
		
	
	
		
			270 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			270 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace Tests\Unit;
 | 
						|
 | 
						|
use App\DataMapper\DefaultSettings;
 | 
						|
use App\Models\Client;
 | 
						|
use Tests\TestCase;
 | 
						|
 | 
						|
class EvaluateStringTest extends TestCase
 | 
						|
{
 | 
						|
 | 
						|
	public function testClassNameResolution()
 | 
						|
	{
 | 
						|
		$this->assertEquals(class_basename(Client::class), 'Client');
 | 
						|
	}
 | 
						|
 | 
						|
} |