GraphQL\Tests\Language\PrinterTest::testDoesntAlterAST PHP Метод

testDoesntAlterAST() публичный Метод

public testDoesntAlterAST ( )
    public function testDoesntAlterAST()
    {
        $kitchenSink = file_get_contents(__DIR__ . '/kitchen-sink.graphql');
        $ast = Parser::parse($kitchenSink);
        $astCopy = $ast->cloneDeep();
        $this->assertEquals($astCopy, $ast);
        Printer::doPrint($ast);
        $this->assertEquals($astCopy, $ast);
    }