Source

						public function testUncallableGenericFilter() {
		$subject = new Form(array(
			'model' => __CLASS__,
			'filters' => array(
				true
			)
		));

		$request = (object) array('data' => array('username' => 'Test'));

		$this->expectException('Authentication filter is not callable.');
		$subject->check($request);
	}