1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/tests/Unit/EvaluateStringTest.php

37 lines
727 B
PHP
Raw Normal View History

<?php
2020-09-14 13:11:46 +02:00
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
2020-09-14 13:11:46 +02:00
*
* @license https://www.elastic.co/licensing/elastic-license
2020-09-14 13:11:46 +02:00
*/
namespace Tests\Unit;
use App\Models\Client;
use Tests\TestCase;
2019-04-20 01:02:49 +02:00
/**
* @test
*/
class EvaluateStringTest extends TestCase
{
2023-12-07 03:59:36 +01:00
public function testNumericCleanup()
{
$string = '13/favicon.ico';
$number = preg_replace('~\D~', '', $string);
$this->assertEquals(13, $number);
}
public function testClassNameResolution()
{
$this->assertEquals(class_basename(Client::class), 'Client');
}
2023-12-07 03:59:36 +01:00
}