Google\Cloud\Tests\Snippets\BigQuery\JobTest::testInfo PHP Method

testInfo() public method

public testInfo ( )
    public function testInfo()
    {
        $startTime = '100';
        $job = $this->getJob($this->connection, ['statistics' => ['startTime' => $startTime]]);
        $snippet = $this->snippetFromMethod(Job::class, 'info');
        $snippet->addLocal('job', $job);
        $res = $snippet->invoke();
        $this->assertEquals($startTime, $res->output());
    }