Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
43 | public function testSessionId() |
||
44 | { |
||
45 | $request = $this->getRequest(); |
||
46 | |||
47 | $bouncer = $this->getBouncer($request); |
||
48 | |||
49 | $identity = $bouncer->getIdentity(); |
||
50 | |||
51 | $this->assertInstanceOf('\\Bouncer\\Resource\\Session', $identity->getSession()); |
||
52 | |||
53 | $this->assertEquals('529460e691b0f2c87ff95acd6c4e00d2', $identity->getSession()->getId()); |
||
54 | } |
||
55 | |||
57 |