| Conditions | 4 |
| Paths | 2 |
| Total Lines | 12 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | public function testIfConstantValueExistsFromOpensslDependency() |
||
| 15 | { |
||
| 16 | if (!defined('OPENSSL_ALGO_SHA256') || |
||
| 17 | !defined('OPENSSL_ALGO_SHA384') || |
||
| 18 | !defined('OPENSSL_ALGO_SHA512')) { |
||
| 19 | throw new ConstantFromExternalModuleNotFoundException( |
||
| 20 | "Install 'openssl' module first." |
||
| 21 | ); |
||
| 22 | } |
||
| 23 | |||
| 24 | $this->assertTrue(true); |
||
| 25 | } |
||
| 26 | |||
| 44 |