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

testDoesExistTrue() 공개 메소드

public testDoesExistTrue ( )
    public function testDoesExistTrue()
    {
        $this->connection->getJob(Argument::any())->willReturn(['jobReference' => ['jobId' => $this->jobId]])->shouldBeCalledTimes(1);
        $job = $this->getJob($this->connection);
        $this->assertTrue($job->exists());
    }