| Conditions | 2 |
| Paths | 2 |
| Total Lines | 7 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | protected function setUp() : void |
||
| 18 | { |
||
| 19 | if( !class_exists( '\TYPO3\CMS\Core\Crypto\PasswordHashing\Md5PasswordHash' ) ) { |
||
| 20 | $this->markTestSkipped( 'TYPO3 password hashing not available' ); |
||
| 21 | } |
||
| 22 | |||
| 23 | $this->object = new \Aimeos\Base\Password\Typo3( new \TYPO3\CMS\Core\Crypto\PasswordHashing\Md5PasswordHash() ); |
||
| 24 | } |
||
| 44 |