Inheritance: extends Rule
Beispiel #1
0
 /**
  * @expectedException \DMS\Filter\Exception\FilterException
  */
 public function testInvalidEncoding()
 {
     if (!function_exists('mb_strtolower')) {
         $this->markTestSkipped('mbstring extension not enabled');
     }
     $rule = new ToLower(array('encoding' => 'invalid'));
     $result = $rule->applyFilter('x');
 }