search fix

This commit is contained in:
Simon Pocrnjič
2024-11-21 21:08:47 +01:00
parent 713bd9ffe3
commit 09fcac7cb5
11 changed files with 126 additions and 262 deletions
+18
View File
@@ -0,0 +1,18 @@
<?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'));
}
}