Exemplo n.º 1
0
 /**
  * @covers Mage_Selenium_TestCase::clearDataArray
  *
  * @dataProvider testClearDataArrayDataProvider
  *
  * @param $inputArray
  * @param $expectedCount
  */
 public function testClearDataArray($inputArray, $expectedCount)
 {
     //Steps
     $instance = new Mage_Selenium_TestCase();
     $inputArray = $instance->clearDataArray($inputArray);
     $this->assertEquals($expectedCount, $this->_getValuesCount($instance->clearDataArray($inputArray)));
 }