Extension\Oo\OoParamsTest::testSetStrictAgeException2 PHP Метод

testSetStrictAgeException2() публичный Метод

    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');
    }