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,23 @@
<?php
namespace Tests\unit\Support\Search\QueryParser;
use FireflyIII\Support\Search\QueryParser\GdbotsQueryParser;
use FireflyIII\Support\Search\QueryParser\QueryParserInterface;
/**
* @group unit-test
* @group support
* @group search
*
* @internal
*
* @coversNothing
*/
final class GdbotsQueryParserParseQueryTest extends AbstractQueryParserInterfaceParseQueryTest
{
protected function createParser(): QueryParserInterface
{
return new GdbotsQueryParser();
}
}