mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 05:02:36 +01:00
43e57d0117
* minor fix for payment notifications * styleci * Limit Self updating to self hosters only : * Fixes for designs * Minor fixes for self-update
20 lines
302 B
PHP
20 lines
302 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');
|
|
}
|
|
}
|