SevenShores\Hubspot\Tests\Integration\Resources\OwnersTest::all PHP Method

all() public method

public all ( )
    public function all()
    {
        $this->createOwner(uniqid('test_email') . '@hubspot.com');
        $this->createOwner(uniqid('test_email') . '@hubspot.com');
        $this->createOwner(uniqid('test_email') . '@hubspot.com');
        $response = $this->owners->all();
        $this->assertSame(200, $response->getStatusCode());
        $this->assertGreaterThanOrEqual(3, count($response->toArray()));
    }