-
-
Notifications
You must be signed in to change notification settings - Fork 567
/
Copy pathTestCaseBase.php
41 lines (36 loc) · 1.16 KB
/
TestCaseBase.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?php declare(strict_types=1);
namespace GraphQL\Tests;
use GraphQL\Language\AST\Node;
use GraphQL\Language\Printer;
use PHPUnit\Framework\TestCase;
abstract class TestCaseBase extends TestCase
{
/**
* Useful to test code with no observable behaviour other than not crashing.
*
* In contrast to PHPUnit's native method, this lets the test case count towards coverage.
*
* @see TestCase::expectNotToPerformAssertions()
*/
public function assertDidNotCrash(): void
{
$this->addToAssertionCount(1);
}
protected static function assertASTMatches(string $expected, ?Node $node): void
{
self::assertInstanceOf(Node::class, $node);
self::assertSame($expected, Printer::doPrint($node));
}
/**
* Just defined so that we can use Rector to prefer assertSame() over assertEquals() everywhere else.
*
* Array output may differ between tested PHP versions.
*
* @param array<mixed> $expected
* @param array<mixed> $actual
*/
protected static function assertArrayEquals(array $expected, array $actual): void
{
self::assertEquals($expected, $actual);
}
}