Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
39 | public function testGetAlgorithmValueThrowsExceptionOnInvalidMnemonic(): void |
||
40 | { |
||
41 | $this->expectException(\InvalidArgumentException::class); |
||
42 | $this->expectExceptionMessage('"INVALID_MNEMONIC" is not a valid algorithm mnemonic.'); |
||
43 | Algorithms::getAlgorithmValue('INVALID_MNEMONIC'); |
||
44 | } |
||
45 | } |
||
46 |