summaryrefslogtreecommitdiff
path: root/tests/Unit/Helpers/AuthenticatorServiceProviderTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Unit/Helpers/AuthenticatorServiceProviderTest.php')
-rw-r--r--tests/Unit/Helpers/AuthenticatorServiceProviderTest.php25
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/Unit/Helpers/AuthenticatorServiceProviderTest.php b/tests/Unit/Helpers/AuthenticatorServiceProviderTest.php
new file mode 100644
index 00000000..f7819da2
--- /dev/null
+++ b/tests/Unit/Helpers/AuthenticatorServiceProviderTest.php
@@ -0,0 +1,25 @@
+<?php
+
+namespace Engelsystem\Test\Unit\Helpers;
+
+use Engelsystem\Application;
+use Engelsystem\Helpers\Authenticator;
+use Engelsystem\Helpers\AuthenticatorServiceProvider;
+use Engelsystem\Test\Unit\ServiceProviderTest;
+
+class AuthenticatorServiceProviderTest extends ServiceProviderTest
+{
+ /**
+ * @covers \Engelsystem\Helpers\AuthenticatorServiceProvider::register()
+ */
+ public function testRegister()
+ {
+ $app = new Application();
+
+ $serviceProvider = new AuthenticatorServiceProvider($app);
+ $serviceProvider->register();
+
+ $this->assertInstanceOf(Authenticator::class, $app->get(Authenticator::class));
+ $this->assertInstanceOf(Authenticator::class, $app->get('authenticator'));
+ }
+}