You are here

protected function DrupalWebTestCase::assertNoField in SimpleTest 6.2

Same name and namespace in other branches
  1. 7.2 drupal_web_test_case.php \DrupalWebTestCase::assertNoField()
  2. 7 drupal_web_test_case.php \DrupalWebTestCase::assertNoField()

Asserts that a field does not exist with the given name or id.

Parameters

$field: Name or id of field to assert.

$message: Message to display.

$group: The group this message belongs to.

Return value

TRUE on pass, FALSE on fail.

File

./drupal_web_test_case.php, line 2920

Class

DrupalWebTestCase
Test case for typical Drupal tests.

Code

protected function assertNoField($field, $message = '', $group = 'Other') {
  return $this
    ->assertNoFieldByXPath($this
    ->constructFieldXpath('name', $field) . '|' . $this
    ->constructFieldXpath('id', $field), NULL, $message, $group);
}