mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
feafbd9826
* 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');
|
|
}
|
|
|
|
} |