Google\Cloud\Tests\BigQuery\JobTest::testGetsQueryResults PHP 메소드

testGetsQueryResults() 공개 메소드

    public function testGetsQueryResults()
    {
        $this->connection->getQueryResults(Argument::any())->willReturn(['jobReference' => ['jobId' => $this->jobId]])->shouldBeCalledTimes(1);
        $job = $this->getJob($this->connection);
        $this->assertInstanceOf(QueryResults::class, $job->queryResults());
    }