function tearDown() { parent::tearDown(); $tmp = new T_File_Dir(T_CACHE_DIR . 'test'); $tmp->delete(); }
function tearDown() { parent::tearDown(); /* delete all files in .tmp/test directory */ $tmp = new T_File_Dir(T_CACHE_DIR . 'test'); $tmp->delete(); }
/** * 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(); }