| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 25 | function testNoXss() |
||
| 26 | { |
||
| 27 | |||
| 28 | $cerberus = new CerberusService(); |
||
| 29 | $cerberus->setOptions($this->getOptions()); |
||
| 30 | |||
| 31 | $data = '<span>http://dev-toolbox.co.uk'; |
||
| 32 | $detection = $cerberus |
||
| 33 | ->pushHandler(new XssHandler($data)); |
||
| 34 | |||
| 35 | $this->assertEquals(0, $detection->getScore()); |
||
| 36 | $this->assertEquals('[]', $detection->getResult()); |
||
| 37 | |||
| 38 | } |
||
| 39 | |||
| 60 |