function SimpleTestFunctionalTest::stubTest

Test to be run and the results confirmed.

1 call to SimpleTestFunctionalTest::stubTest()
SimpleTestFunctionalTest::testWebTestRunner in drupal/modules/simpletest/simpletest.test
Make sure that tests selected through the web interface are run and that the results are displayed correctly.

File

drupal/modules/simpletest/simpletest.test, line 157
Tests for simpletest.module.

Class

SimpleTestFunctionalTest
@file Tests for simpletest.module.

Code

function stubTest() {
  $this
    ->pass($this->pass);
  $this
    ->fail($this->fail);
  $this
    ->drupalCreateUser(array(
    $this->valid_permission,
  ));
  $this
    ->drupalCreateUser(array(
    $this->invalid_permission,
  ));
  $this
    ->pass(t('Test ID is @id.', array(
    '@id' => $this->testId,
  )));

  // Generates a warning.
  $i = 1 / 0;

  // Call an assert function specific to that class.
  $this
    ->assertNothing();

  // Generates a warning inside a PHP function.
  array_key_exists(NULL, NULL);
  debug('Foo', 'Debug');
}