Google\Cloud\Tests\Datastore\EntityTest::testSet PHP Method

testSet() public method

public testSet ( )
    public function testSet()
    {
        $data = ['foo' => 'bar'];
        $entity = new Entity($this->key, []);
        $entity->set($data);
        $this->assertEquals($data, $entity->get());
    }