We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
SHIELD_VERSION
1 parent bfe0711 commit 89969b6Copy full SHA for 89969b6
tests/Collectors/AuthTest.php
@@ -4,6 +4,7 @@
4
5
namespace Tests\Collectors;
6
7
+use CodeIgniter\Shield\Auth as ShieldAuth;
8
use CodeIgniter\Shield\Authentication\Authenticators\Session;
9
use CodeIgniter\Shield\Collectors\Auth;
10
use CodeIgniter\Shield\Entities\User;
@@ -71,6 +72,7 @@ public function testGetTitleDetails(): void
71
72
{
73
$output = $this->collector->getTitleDetails();
74
75
+ $this->assertStringContainsString(ShieldAuth::SHIELD_VERSION, $output);
76
$this->assertStringContainsString(Session::class, $output);
77
}
78
0 commit comments