コード例 #1
0
ファイル: SocketTest.php プロジェクト: kraken-php/framework
 /**
  *
  */
 public function tearDown()
 {
     $path = str_replace('unix://', '', $this->tempSocketAddress());
     if (file_exists($path)) {
         unlink($path);
     }
     parent::tearDown();
 }
コード例 #2
0
 /**
  *
  */
 public function tearDown()
 {
     $this->destroyMemoryStream();
     parent::tearDown();
 }
コード例 #3
0
 /**
  *
  */
 public function tearDown()
 {
     ini_set('session.serialize_handler', 'php');
     parent::tearDown();
 }
コード例 #4
0
ファイル: LoopTest.php プロジェクト: kraken-php/framework
 /**
  *
  */
 public function tearDown()
 {
     fclose($this->fp);
     parent::tearDown();
 }