Move tests to match rearranged structure + standardize tests

This commit is contained in:
Sobuno
2025-01-02 22:18:12 +01:00
parent afc9ea08f3
commit ebd30f4861
4 changed files with 284 additions and 316 deletions

View File

@@ -0,0 +1,24 @@
<?php
namespace Tests\unit\Support\Search\QueryParser;
use FireflyIII\Support\Search\QueryParser\QueryParser;
use FireflyIII\Support\Search\QueryParser\QueryParserInterface;
/**
* @group unit-test
* @group support
* @group search
*
* @internal
*
* @coversNothing
*/
final class QueryParserParseQueryTest extends AbstractQueryParserInterfaceParseQueryTest
{
protected function createParser(): QueryParserInterface
{
return new QueryParser();
}
}