public function UsersMockedTest::testThatGetAllUsersFieldsAreFormattedCorrectly in Auth0 Single Sign On 8.2
Test that the fields values are sent correctly.
Return value
void
Throws
\Exception Should not be thrown in this test.
File
- vendor/
auth0/ auth0-php/ tests/ API/ Management/ UsersMockedTest.php, line 267
Class
- UsersMockedTest
- Class UsersMockedTest.
Namespace
Auth0\Tests\API\ManagementCode
public function testThatGetAllUsersFieldsAreFormattedCorrectly() {
$api = new MockManagementApi([
new Response(200, self::$headers),
new Response(200, self::$headers),
]);
$api
->call()
->users()
->getAll([
'fields' => 'field1,field2',
]);
$query = $api
->getHistoryQuery();
$this
->assertEquals('fields=field1,field2', $query);
$api
->call()
->users()
->getAll([
'fields' => [
'field1',
'field2',
],
]);
$query = $api
->getHistoryQuery();
$this
->assertEquals('fields=field1,field2', $query);
}