Google\Cloud\Tests\Snippets\BigQuery\QueryResultsTest::setUp PHP Method

setUp() public method

public setUp ( )
    public function setUp()
    {
        $this->info = ['jobComplete' => false, 'jobReference' => ['jobId' => 'job'], 'rows' => [['f' => [['v' => 'abcd']]]], 'schema' => ['fields' => [['name' => 'name', 'type' => 'STRING']]]];
        $this->reload = [];
        $this->connection = $this->prophesize(ConnectionInterface::class);
        $this->qr = new \QueryResultsStub($this->connection->reveal(), self::JOB_ID, self::PROJECT, $this->info, $this->reload, new ValueMapper(false));
    }