示例#1
0
 public function _before(\Codeception\TestCase $test)
 {
     if (strpos(PHP_VERSION, '5.3') === 0) {
         $test->markTestSkipped();
     }
 }
示例#2
0
 public function _before(\Codeception\TestCase $test)
 {
     if (floatval(phpversion()) == '5.3') {
         $test->markTestSkipped();
     }
 }