Beispiel #1
0
 /**
  * Wraps drupalGet() for additional watchdog message assertion.
  *
  * @param $options
  *   In addition to regular $options that are passed to url():
  *   - watchdog: (optional) Boolean whether to assert that only non-severe
  *     watchdog messages have been logged. Defaults to TRUE. Use FALSE to
  *     negate the watchdog message severity assertion.
  *
  * @see DrupalWebTestCase->drupalGet()
  * @see MollomWebTestCase->assertMollomWatchdogMessages()
  * @see MollomWebTestCase->assertResponseID()
  */
 protected function drupalGet($path, array $options = array(), array $headers = array())
 {
     $output = parent::drupalGet($path, $options, $headers);
     if ($this->assertWatchdogErrors) {
         $options += array('watchdog' => RfcLogLevel::NOTICE);
         $this->assertMollomWatchdogMessages($options['watchdog']);
     }
     return $output;
 }