1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 00:41:34 +02:00
invoiceninja/tests/Unit/EvaluateStringTest.php
David Bomba 43e57d0117
Fixes for self-update (#3514)
* minor fix for payment notifications

* styleci

* Limit Self updating to self hosters only
:

* Fixes for designs

* Minor fixes for self-update
2020-03-21 16:37:30 +11:00

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');
}
}