2019-01-15 23:00:25 +01:00
|
|
|
<?php
|
2020-09-14 13:11:46 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-09-14 13:11:46 +02:00
|
|
|
*
|
2022-06-21 11:57:17 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2020-09-14 13:11:46 +02:00
|
|
|
*/
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2019-01-15 23:00:25 +01:00
|
|
|
namespace Tests\Unit;
|
|
|
|
|
|
|
|
use App\Models\Client;
|
|
|
|
use Tests\TestCase;
|
|
|
|
|
2019-04-20 01:02:49 +02:00
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
2019-01-15 23:00:25 +01:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2020-03-21 06:37:30 +01:00
|
|
|
public function testClassNameResolution()
|
|
|
|
{
|
|
|
|
$this->assertEquals(class_basename(Client::class), 'Client');
|
|
|
|
}
|
2023-12-07 03:59:36 +01:00
|
|
|
|
2020-03-21 06:37:30 +01:00
|
|
|
}
|