[Tests] Skip segfaulting form test

This commit is contained in:
Joseph Bielawski 2011-12-30 15:36:55 +01:00
parent 8c4af20482
commit 4c44023e8b

View File

@ -63,7 +63,6 @@ class FormUtilTest extends \PHPUnit_Framework_TestCase
array(false, true),
array(true, array()),
array(true, new \SplFixedArray(1)),
);
}
@ -75,6 +74,15 @@ class FormUtilTest extends \PHPUnit_Framework_TestCase
$this->assertSame($expected, FormUtil::isChoiceGroup($value));
}
public function testIsChoiceGroupPart2()
{
if (version_compare(PHP_VERSION, '5.3.2') <= 0) {
$this->markTestSkipped('PHP prior to 5.3.3 has issue with SplFixedArrays - https://bugs.php.net/bug.php?id=50481');
}
$this->assertSame(true, FormUtil::isChoiceGroup(new \SplFixedArray(1)));
}
public function isChoiceSelectedProvider()
{
return array(