Zendesk\API\UnitTests\Core\AppInstallationsTest::testJobStatuses PHP Method

testJobStatuses() public method

Tests if the client calls the correct endpoint for App Installation job statuses
public testJobStatuses ( )
    public function testJobStatuses()
    {
        $resourceId = 1;
        $this->assertEndpointCalled(function () use($resourceId) {
            $this->client->appInstallations()->jobStatuses($resourceId);
        }, "apps/installations/job_statuses/{$resourceId}.json");
    }