bind(ServerRequestInterface::class, Request::class); $config = new Config(); $config->set('password_algorithm', PASSWORD_DEFAULT); $config->set('auth_guest_role', 42); $app->instance('config', $config); $serviceProvider = new AuthenticatorServiceProvider($app); $serviceProvider->register(); $this->assertInstanceOf(Authenticator::class, $app->get(Authenticator::class)); $this->assertInstanceOf(Authenticator::class, $app->get('authenticator')); $this->assertInstanceOf(Authenticator::class, $app->get('auth')); /** @var Authenticator $auth */ $auth = $app->get(Authenticator::class); $this->assertEquals(PASSWORD_DEFAULT, $auth->getPasswordAlgorithm()); $this->assertEquals(42, $auth->getGuestRole()); } }