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