*/ class ApiOauthTest extends ApiTestCase { public function testGetOauthToken(): void { $this->registerResult($result = $this->getClient()->retrievingToken('client_credentials', [ 'scope' => '', ])); $this->assertTrue($result->success()); $this->assertNotEmpty($result->data()->access_token); } }