| Total Complexity | 3 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Changes | 3 | ||
| Bugs | 2 | Features | 1 |
| 1 | <?php |
||
| 12 | class CryptHelperTest extends AbstractTest |
||
| 13 | { |
||
| 14 | public static function testKeyPathFromStoragePath() |
||
| 15 | { |
||
| 16 | $path = CryptHelper::keyPath('oath.key'); |
||
| 17 | self::assertSame( |
||
| 18 | \Nip\storage_path('hello/keys/oath.key'), |
||
| 19 | $path |
||
| 20 | ); |
||
| 21 | } |
||
| 22 | |||
| 23 | public static function testGenerateKeys() |
||
| 38 | } |
||
| 39 | } |
||
| 54 |