public function testGetRawValues()
 {
     $expectedData = array(array('foo' => ' bazbat ', 'bar' => '12345', 'baz' => '', 'nest' => array('foo' => ' bazbat ', 'bar' => '12345', 'baz' => '')), array('foo' => ' batbaz ', 'bar' => '54321', 'baz' => '', 'nest' => array('foo' => ' batbaz ', 'bar' => '54321', 'baz' => '')));
     $this->filter->setInputFilter($this->getBaseInputFilter());
     $this->filter->setData($this->getValidCollectionData());
     $this->assertTrue($this->filter->isValid());
     $this->assertEquals($expectedData, $this->filter->getRawValues());
 }
 public function testGetRawValues()
 {
     if (!extension_loaded('intl')) {
         $this->markTestSkipped('ext/intl not enabled');
     }
     $expectedData = array(array('foo' => ' bazbat ', 'bar' => '12345', 'baz' => '', 'nest' => array('foo' => ' bazbat ', 'bar' => '12345', 'baz' => '')), array('foo' => ' batbaz ', 'bar' => '54321', 'baz' => '', 'nest' => array('foo' => ' batbaz ', 'bar' => '54321', 'baz' => '')));
     $this->filter->setInputFilter($this->getBaseInputFilter());
     $this->filter->setData($this->getValidCollectionData());
     $this->assertTrue($this->filter->isValid());
     $this->assertEquals($expectedData, $this->filter->getRawValues());
 }