| Total Complexity | 3 |
| Total Lines | 34 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | class UnlinkDirectoryTest extends PHPUnit_Framework_TestCase |
||
| 21 | { |
||
| 22 | protected $unlink_directory; |
||
| 23 | /** |
||
| 24 | * Call before all test |
||
| 25 | * |
||
| 26 | * @return "" |
||
|
|
|||
| 27 | */ |
||
| 28 | protected function setUp() |
||
| 29 | { |
||
| 30 | $this->unlink_directory = new Unlink_Directory(); |
||
| 31 | } |
||
| 32 | |||
| 33 | /** |
||
| 34 | * Test method to reove directory |
||
| 35 | * |
||
| 36 | * @param String $directory Directory to delete |
||
| 37 | * |
||
| 38 | * @return "" |
||
| 39 | */ |
||
| 40 | function testRemoveDirectory($directory = null) |
||
| 44 | } |
||
| 45 | |||
| 46 | /** |
||
| 47 | * Call after all test |
||
| 48 | * |
||
| 49 | * @return "" |
||
| 50 | */ |
||
| 51 | protected function tearDown() |
||
| 58 |