public function testGetValueParsed()
 {
     $value = [1, 2, 3, 4, 5, 6, 7, 8, 9];
     $this->_condition->setValue(['1,2,3,4,5,6,7,8,9']);
     $this->_condition->setOperator('()');
     $this->assertEquals($value, $this->_condition->getValueParsed());
 }