public function testSetAction()
 {
     $c = new ae_CommentfilterModel();
     $c->setAction(ae_CommentfilterModel::ACTION_DROP);
     $this->assertTrue($c->getAction() === ae_CommentfilterModel::ACTION_DROP);
     $this->setExpectedException('Exception');
     $c->setAction(TRUE);
 }