Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
36 | public function testProcessExisting() |
||
37 | { |
||
38 | $user = $this->prophesize(FrontendUser::class); |
||
39 | $user->getUid()->willReturn('1'); |
||
40 | |||
41 | $user->setProperty('mksamlauth_host', Argument::any()) |
||
42 | ->shouldNotBeCalled(); |
||
43 | |||
44 | $this->enricher->process($user->reveal(), [ |
||
45 | 'idp' => [ |
||
46 | 'name' => 'foo' |
||
47 | ] |
||
51 |