mirror of
https://github.com/retailcrm/graphql-php.git
synced 2024-11-22 21:06:05 +03:00
21 lines
426 B
PHP
21 lines
426 B
PHP
|
<?php
|
||
|
namespace GraphQL\Tests;
|
||
|
|
||
|
use GraphQL\Language\Token;
|
||
|
|
||
|
class TokenTest extends \PHPUnit_Framework_TestCase
|
||
|
{
|
||
|
public function testReturnTokenOnArray()
|
||
|
{
|
||
|
$token = new Token('Kind', 1, 10, 3, 5);
|
||
|
$expected = [
|
||
|
'kind' => 'Kind',
|
||
|
'value' => null,
|
||
|
'line' => 3,
|
||
|
'column' => 5
|
||
|
];
|
||
|
|
||
|
$this->assertEquals($expected, $token->toArray());
|
||
|
}
|
||
|
}
|