mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-24 14:46:37 +00:00
Move tests to match rearranged structure + standardize tests
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user