Zendesk\API\UnitTests\HelpCenter\ArticlesTest::testBulkAttachments PHP Method

testBulkAttachments() public method

Test if bulk attachments can be called and pass the correct params
public testBulkAttachments ( )
    public function testBulkAttachments()
    {
        $this->assertEndpointCalled(function () {
            $attachments = [10002, 10003];
            $this->client->helpCenter->articles()->bulkAttach(1, $attachments);
        }, 'help_center/articles/1/bulk_attachments.json', 'POST');
    }