| Total Complexity | 5 |
| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | class Typo3Test extends \PHPUnit\Framework\TestCase |
||
| 13 | { |
||
| 14 | private $object; |
||
| 15 | |||
| 16 | |||
| 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 | } |
||
| 25 | |||
| 26 | |||
| 27 | protected function tearDown() : void |
||
| 28 | { |
||
| 29 | unset( $this->object ); |
||
| 30 | } |
||
| 31 | |||
| 32 | |||
| 33 | public function testHash() |
||
| 36 | } |
||
| 37 | |||
| 38 | |||
| 39 | public function testVerify() |
||
| 42 | } |
||
| 43 | } |
||
| 44 |