/**
  * Attempt to run a file-based preHook and set the value of a field
  * 
  * @return void
  */
 public function testPreHooks()
 {
     $this->controller->setProperty('preHooks', $this->login->config['testsPath'] . 'Hooks/Pre/prehooktest.setvalue.php');
     $this->controller->loadPreHooks();
     $val = $this->controller->preHooks->getValue('fullname');
     $success = strcmp($val, 'TestPreValue') == 0;
     $this->assertTrue($success, 'The preHook was not fired or did not set the value of the field.');
 }