Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
32 | public function testDirectoryPath() { |
||
33 | |||
34 | if(!file_exists($this->_directoryPath)) { |
||
35 | mkdir($this->_directoryPath); |
||
36 | } |
||
37 | |||
38 | \LE_ACME2\Authorizer\HTTP::setDirectoryPath($this->_directoryPath); |
||
39 | |||
40 | $this->assertTrue( |
||
41 | \LE_ACME2\Authorizer\HTTP::getDirectoryPath() === $this->_directoryPath |
||
42 | ); |
||
44 | } |