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

setUp() public method

public setUp ( )
    public function setUp()
    {
        $this->info = ['rows' => [['f' => [['v' => 'abcd']]]], 'schema' => ['fields' => [['name' => 'name', 'type' => 'STRING']]], 'friendlyName' => 'Jeffrey'];
        $this->connection = $this->prophesize(ConnectionInterface::class);
        $this->table = new \TableStub($this->connection->reveal(), self::ID, self::DSID, self::PROJECT, $this->info);
    }