Google\Cloud\Tests\BigQuery\JobTest::testDoesExistFalse PHP Method

testDoesExistFalse() public method

public testDoesExistFalse ( )
    public function testDoesExistFalse()
    {
        $this->connection->getJob(Argument::any())->willThrow(new NotFoundException(null))->shouldBeCalledTimes(1);
        $job = $this->getJob($this->connection);
        $this->assertFalse($job->exists());
    }