| Total Complexity | 3 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | class SymfonySecurityTestTest extends TestCase |
||
| 20 | { |
||
| 21 | public function testAttributes() |
||
| 22 | { |
||
| 23 | $test = new SymfonySecurityTest(['foo', 'bar']); |
||
| 24 | |||
| 25 | $this->assertSame(['foo', 'bar'], $test->getAttributes()); |
||
| 26 | } |
||
| 27 | |||
| 28 | public function testSubject() |
||
| 29 | { |
||
| 30 | $test = new SymfonySecurityTest([], 'foo'); |
||
| 31 | |||
| 32 | $this->assertSame('foo', $test->getSubject()); |
||
| 33 | } |
||
| 34 | |||
| 35 | public function testMetadata() |
||
| 46 | } |
||
| 47 | } |
||
| 48 |