You are here

public function SimpleTestTest::assertNothing in Drupal 8

Assert nothing.

1 call to SimpleTestTest::assertNothing()
SimpleTestTest::stubTest in core/modules/simpletest/src/Tests/SimpleTestTest.php
Test to be run and the results confirmed.

File

core/modules/simpletest/src/Tests/SimpleTestTest.php, line 238

Class

SimpleTestTest
Tests SimpleTest's web interface: check that the intended tests were run and ensure that test reports display the intended results. Also test SimpleTest's internal browser and APIs implicitly.

Namespace

Drupal\simpletest\Tests

Code

public function assertNothing() {
  $this
    ->pass('This is nothing.');
}