Google\Cloud\Tests\NaturalLanguage\AnnotationTest::setUp PHP Méthode

setUp() public méthode

public setUp ( )
    public function setUp()
    {
        $this->entity = ['type' => 'PERSON'];
        $this->token = ['partOfSpeech' => ['tag' => 'ADJ'], 'dependencyEdge' => ['label' => 'P']];
        $this->info = ['documentSentiment' => ['polarity' => 1], 'entities' => [$this->entity, ['type' => 'EVENT']], 'tokens' => [$this->token, ['partOfSpeech' => ['tag' => 'NOUN'], 'dependencyEdge' => ['label' => 'ABBREV']]], 'sentences' => [], 'language' => 'en'];
        $this->annotation = new annotation($this->info);
    }