SevenShores\Hubspot\Tests\Integration\Resources\BlogTopicsTest::search_with_query_and_params PHP Method

search_with_query_and_params() public method

    public function search_with_query_and_params()
    {
        $response = $this->blogTopics->search('Test', ['limit' => 5]);
        $this->assertEquals(200, $response->getStatusCode());
        $this->assertLessThanOrEqual(5, count($response->objects));
    }