public function RolesTestMocked::testThatGetRoleRequestWithEmptyRoleIdThrowsException in Auth0 Single Sign On 8.2
Test that an empty role ID throws an exception when trying to get a role.
Return value
void
Throws
\Exception Should not be thrown in this test.
File
- vendor/
auth0/ auth0-php/ tests/ API/ Management/ RolesMockedTest.php, line 135
Class
- RolesTestMocked
- Class RolesTestMocked.
Namespace
Auth0\Tests\API\ManagementCode
public function testThatGetRoleRequestWithEmptyRoleIdThrowsException() {
$api = new MockManagementApi();
try {
$api
->call()
->roles()
->get('');
$exception_message = '';
} catch (EmptyOrInvalidParameterException $e) {
$exception_message = $e
->getMessage();
}
$this
->assertContains('Empty or invalid role_id', $exception_message);
}