mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01: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');
|
|
}
|
|
|
|
} |