Ejemplo n.º 1
0
 public function testSetStrictAgeException2()
 {
     $t = new \Test\Oo\OoParams();
     if (!method_exists('PHPUnit_Runner_Version', 'id') || version_compare(\PHPUnit_Runner_Version::id(), '5.2.0', '<')) {
         $this->setExpectedException('\\InvalidArgumentException');
     } else {
         $this->expectException('\\InvalidArgumentException');
     }
     $t->setStrictAge('17');
 }
Ejemplo n.º 2
0
 public function testSetStrictAgeException2()
 {
     $t = new \Test\Oo\OoParams();
     $this->setExpectedException('\\InvalidArgumentException');
     $t->setStrictAge("17");
 }