SevenShores\Hubspot\Tests\Integration\Resources\KeywordsTest::createKeyword PHP Method

createKeyword() private method

* Lots of tests need an existing object to modify.
private createKeyword ( )
    private function createKeyword()
    {
        $response = $this->keywords->create(["keyword" => "k " . uniqid()]);
        $this->assertEquals(201, $response->getStatusCode());
        sleep(1);
        return $response;
    }