コード例 #1
0
ファイル: View.php プロジェクト: robtuley/knotwerk
 function tearDown()
 {
     parent::tearDown();
     $tmp = new T_File_Dir(T_CACHE_DIR . 'test');
     $tmp->delete();
 }
コード例 #2
0
ファイル: Gd.php プロジェクト: robtuley/knotwerk
 function tearDown()
 {
     parent::tearDown();
     /* delete all files in .tmp/test directory */
     $tmp = new T_File_Dir(T_CACHE_DIR . 'test');
     $tmp->delete();
 }
コード例 #3
0
ファイル: Path.php プロジェクト: robtuley/knotwerk
 /**
  * Remove test files and directories.
  */
 function tearDown()
 {
     parent::tearDown();
     /* delete all files in tmp directory */
     $tmp = new T_File_Dir(T_CACHE_DIR . 'test');
     $tmp->delete();
     /* clear file stat cache */
     clearstatcache();
 }