public function GrantsTestMocked::testThatGrantsGetByAudience in Auth0 Single Sign On 8.2
Test that getByAudience adds an audience to the request.
Return value
void
Throws
\Exception Unsuccessful HTTP call.
File
- vendor/
auth0/ auth0-php/ tests/ API/ Management/ GrantsMockedTest.php, line 195
Class
- GrantsTestMocked
- Class GrantsTestMocked.
Namespace
Auth0\Tests\API\ManagementCode
public function testThatGrantsGetByAudience() {
$api = new MockManagementApi([
new Response(200),
]);
$api
->call()
->grants()
->getByAudience('__test_audience__');
$this
->assertStringStartsWith('https://api.test.local/api/v2/grants', $api
->getHistoryUrl());
$this
->assertEquals('audience=__test_audience__', $api
->getHistoryQuery());
}