예제 #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();
 }