File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 23
23
24
24
class ChainUserProviderTest extends TestCase
25
25
{
26
- public function testLoadUserByUsername ()
26
+ public function testLoadUserByIdentifier ()
27
27
{
28
28
$ provider1 = $ this ->createMock (InMemoryUserProvider::class);
29
29
$ provider1
@@ -45,7 +45,7 @@ public function testLoadUserByUsername()
45
45
$ this ->assertSame ($ account , $ provider ->loadUserByIdentifier ('foo ' ));
46
46
}
47
47
48
- public function testLoadUserByUsernameThrowsUserNotFoundException ()
48
+ public function testLoadUserByIdentifierThrowsUserNotFoundException ()
49
49
{
50
50
$ this ->expectException (UserNotFoundException::class);
51
51
$ provider1 = $ this ->createMock (InMemoryUserProvider::class);
Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ public function testCreateUserAlreadyExist()
68
68
$ provider ->createUser (new InMemoryUser ('fabien ' , 'foo ' ));
69
69
}
70
70
71
- public function testLoadUserByUsernameDoesNotExist ()
71
+ public function testLoadUserByIdentifierDoesNotExist ()
72
72
{
73
73
$ this ->expectException (UserNotFoundException::class);
74
74
$ provider = new InMemoryUserProvider ();
You can’t perform that action at this time.
0 commit comments