Teren-app/tests/Feature/StringNormalizerTest.php
Simon Pocrnjič 09fcac7cb5 search fix
2024-11-21 21:08:47 +01:00

19 lines
368 B
PHP

<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Illuminate\Foundation\Testing\WithFaker;
use Tests\TestCase;
class StringNormalizerTest extends TestCase
{
/**
* A basic feature test example.
*/
public function test_example(): void
{
$this->assertTrue(\Normalizer::normalize('Naročnik'));
}
}