Google\Cloud\Tests\Vision\Annotation\EntityTest::testEntity PHP Method

testEntity() public method

public testEntity ( )
    public function testEntity()
    {
        $res = ['foo' => 'bar'];
        $e = new Entity($res);
        $this->assertEquals($res, $e->info());
        $this->assertEquals('bar', $e->foo());
    }
EntityTest