protected function DrupalWebTestCase::assertFieldChecked
Asserts that a checkbox field in the current page is checked.
Parameters
$id: Id of field to assert.
$message: Message to display.
Return value
TRUE on pass, FALSE on fail.
24 calls to DrupalWebTestCase::assertFieldChecked()
- FormsRebuildTestCase::testRebuildPreservesValues in drupal-7.x/
modules/ simpletest/ tests/ form.test - Tests preservation of values.
- FormsRebuildTestCase::testRebuildPreservesValues in drupal-7.x/
modules/ simpletest/ tests/ form.test - Tests preservation of values.
- LocaleConfigurationTest::testLanguageConfiguration in drupal-7.x/
modules/ locale/ locale.test - Functional tests for adding, editing and deleting languages.
- LocaleConfigurationTest::testLanguageConfiguration in drupal-7.x/
modules/ locale/ locale.test - Functional tests for adding, editing and deleting languages.
- LocaleUserCreationTest::testLocalUserCreation in drupal-7.x/
modules/ locale/ locale.test - Functional test for language handling during user creation.
Archivo
- drupal-7.x/
modules/ simpletest/ drupal_web_test_case.php, line 3388
Class
- DrupalWebTestCase
- Test case for typical Drupal tests.
Código
protected function assertFieldChecked($id, $message = '') {
$elements = $this->xpath('//input[@id=:id]', array(':id' => $id));
return $this->assertTrue(isset($elements[0]) && !empty($elements[0]['checked']), $message ? $message : t('Checkbox field @id is checked.', array('@id' => $id)), t('Browser'));
}