1 | <?php |
||
11 | |||
12 | declare(strict_types=1); |
||
13 | |||
14 | namespace Youshido\Tests\Issues\Issue99; |
||
15 | |||
16 | use Youshido\GraphQL\Execution\Processor; |
||
17 | |||
18 | /** |
||
19 | * User: m-naw |
||
20 | * Date: 2/02/17. |
||
21 | */ |
||
22 | class Issue99Test extends \PHPUnit_Framework_TestCase |
||
23 | { |
||
24 | public const BUG_NOT_EXISTS_VALUE = 'bug not exists'; |
||
25 | |||
26 | public const BUG_EXISTS_VALUE = 'bug exists'; |
||
27 | |||
28 | public function testQueryDateTimeTypeWithDateParameter(): void |
||
29 | { |
||
30 | $schema = new Issue99Schema(); |
||
31 | $processor = new Processor($schema); |
||
43 |