Example #1
0
 public function testExtractFilterAliasAndTableExceptionAliasNotFound()
 {
     $data = array('base' => array('alias' => 'c', 'table' => 'car'));
     $filtername = 'blu.enabled';
     // blu is not registered...
     try {
         $this->query->extractFilterAliasAndTable($data, $filtername);
     } catch (Exception $e) {
         return;
     }
     $this->fail('An Acedao\\Exception was not raised.');
 }