22 calls to DrupalTestCase::assert() in SimpleTest 6.2
- DrupalTestCase::assertEqual in ./
drupal_web_test_case.php - Check to see if two values are equal.
- DrupalTestCase::assertFalse in ./
drupal_web_test_case.php - Check to see if a value is false (an empty string, 0, NULL, or FALSE).
- DrupalTestCase::assertIdentical in ./
drupal_web_test_case.php - Check to see if two values are identical.
- DrupalTestCase::assertNotEqual in ./
drupal_web_test_case.php - Check to see if two values are not equal.
- DrupalTestCase::assertNotIdentical in ./
drupal_web_test_case.php - Check to see if two values are not identical.
- DrupalTestCase::assertNotNull in ./
drupal_web_test_case.php - Check to see if a value is not NULL.
- DrupalTestCase::assertNull in ./
drupal_web_test_case.php - Check to see if a value is NULL.
- DrupalTestCase::assertTrue in ./
drupal_web_test_case.php - Check to see if a value is not false (not an empty string, 0, NULL, or FALSE).
- DrupalTestCase::error in ./
drupal_web_test_case.php - Fire an error assertion.
- DrupalTestCase::fail in ./
drupal_web_test_case.php - Fire an assertion that is always negative.
- DrupalTestCase::pass in ./
drupal_web_test_case.php - Fire an assertion that is always positive.
- DrupalWebTestCase::assertLink in ./
drupal_web_test_case.php - Pass if a link with the specified label is found, and optional with the specified index.
- DrupalWebTestCase::assertLinkByHref in ./
drupal_web_test_case.php - Pass if a link containing a given href (part) is found.
- DrupalWebTestCase::assertNoDuplicateIds in ./
drupal_web_test_case.php - Asserts that each HTML ID is used for just a single element.
- DrupalWebTestCase::assertNoLink in ./
drupal_web_test_case.php - Pass if a link with the specified label is not found.
- DrupalWebTestCase::assertNoLinkByHref in ./
drupal_web_test_case.php - Pass if a link containing a given href (part) is not found.
- DrupalWebTestCase::assertNoPattern in ./
drupal_web_test_case.php - Will trigger a pass if the perl regex pattern is not present in raw content.
- DrupalWebTestCase::assertNoRaw in ./
drupal_web_test_case.php - Pass if the raw text is NOT found on the loaded page, fail otherwise. Raw text refers to the raw HTML that the page generated.
- DrupalWebTestCase::assertPattern in ./
drupal_web_test_case.php - Will trigger a pass if the Perl regex pattern is found in the raw content.
- DrupalWebTestCase::assertRaw in ./
drupal_web_test_case.php - Pass if the raw text IS found on the loaded page, fail otherwise. Raw text refers to the raw HTML that the page generated.
- DrupalWebTestCase::assertTextHelper in ./
drupal_web_test_case.php - Helper for assertText and assertNoText.
- DrupalWebTestCase::assertUniqueTextHelper in ./
drupal_web_test_case.php - Helper for assertUniqueText and assertNoUniqueText.