mirror of
https://github.com/retailcrm/graphql-php.git
synced 2025-04-04 05:03:31 +03:00
Merge pull request #177 from GabrielDeveloper/develop
Improve test coverage
This commit is contained in:
commit
0c3a657800
1 changed files with 20 additions and 0 deletions
20
tests/Language/TokenTest.php
Normal file
20
tests/Language/TokenTest.php
Normal file
|
@ -0,0 +1,20 @@
|
|||
<?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());
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue