added one more testcase

This commit is contained in:
Sebastian Mendel
2007-03-26 12:06:21 +00:00
parent 18c210d548
commit b2ded6b4dd

View File

@@ -32,5 +32,11 @@ class PMA_transformation_getOptions_test extends PHPUnit_Framework_TestCase
$this->assertEquals(array('2,3', ' ,, option ,,'),
PMA_transformation_getOptions("'2,3' ,' ,, option ,,' "));
}
public function testEmpty()
{
$this->assertEquals(array('', '', ''),
PMA_transformation_getOptions("'',,"));
}
}
?>