setUp() public method

public setUp ( )
示例#1
0
文件: Base.php 项目: raz0rsdge/horde
 public function setUp()
 {
     parent::setUp();
     $error = self::$setup->getError();
     if (!empty($error)) {
         $this->markTestSkipped($error);
     }
 }
示例#2
0
文件: Base.php 项目: jubinpatel/horde
 public function setUp()
 {
     parent::setUp();
     $error = self::$setup->getError();
     if (!empty($error)) {
         $this->markTestSkipped($error);
     }
     $this->_old_errorreporting = error_reporting(E_ALL & ~(E_STRICT | E_DEPRECATED));
     error_reporting(E_ALL & ~(E_STRICT | E_DEPRECATED));
 }