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.
1 parent 23ebc7a commit a0479a1Copy full SHA for a0479a1
tests/JWTAuthTest.php
@@ -30,10 +30,7 @@ protected function setUp(): void
30
$this->jwtAuth = new JWTAuth($authProvider, $jwtProvider, $claimsFactory);
31
}
32
33
- /**
34
- * @test
35
- */
36
- public function can_get_token_with_valid_login_credentials()
+ public function testCanGetTokenWithValidLoginCredentials()
37
{
38
$username = 'andrewdyer';
39
$password = 'password';
@@ -43,10 +40,7 @@ public function can_get_token_with_valid_login_credentials()
43
40
$this->assertIsString($token);
44
41
45
42
46
47
48
49
- public function cant_get_token_with_incorrect_login_credentials()
+ public function testCantGetTokenWithIncorrectLoginCredentials()
50
51
52
$password = 'pa55w0rd';
0 commit comments