예제 #1
0
 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)));
 }
예제 #2
0
 public function isChoiceGroup($label)
 {
     return FormUtil::isChoiceGroup($label);
 }
예제 #3
0
 /**
  * @dataProvider isChoiceGroupProvider
  */
 public function testIsChoiceGroup($expected, $value)
 {
     $this->assertSame($expected, FormUtil::isChoiceGroup($value));
 }
예제 #4
0
 public function testIsChoiceGroupPart2()
 {
     $this->assertTrue(FormUtil::isChoiceGroup(new \SplFixedArray(1)));
 }