public function BrokenSetUpTest::testMethod in SimpleTest 8.3
Runs this test case from within the simpletest child site.
File
- src/
Tests/ BrokenSetUpTest.php, line 76
Class
- BrokenSetUpTest
- Tests a test case that does not call parent::setUp().
Namespace
Drupal\simpletest\TestsCode
public function testMethod() {
// If the test is being run from the main site, run it again from the web
// interface within the simpletest child site.
if (!$this
->isInChildSite()) {
// Verify that a broken setUp() method is caught.
file_put_contents($this->sharedTriggerFile, 'setup');
$edit['tests[Drupal\\simpletest\\Tests\\BrokenSetUpTest]'] = TRUE;
$this
->drupalPostForm('admin/config/development/testing', $edit, t('Run tests'));
$this
->assertRaw('Broken setup');
$this
->assertNoRaw('The setUp() method has run.');
$this
->assertNoRaw('Broken test');
$this
->assertNoRaw('The test method has run.');
$this
->assertNoRaw('Broken teardown');
$this
->assertNoRaw('The tearDown() method has run.');
// Verify that a broken tearDown() method is caught.
file_put_contents($this->sharedTriggerFile, 'teardown');
$edit['tests[Drupal\\simpletest\\Tests\\BrokenSetUpTest]'] = TRUE;
$this
->drupalPostForm('admin/config/development/testing', $edit, t('Run tests'));
$this
->assertNoRaw('Broken setup');
$this
->assertRaw('The setUp() method has run.');
$this
->assertNoRaw('Broken test');
$this
->assertRaw('The test method has run.');
$this
->assertRaw('Broken teardown');
$this
->assertNoRaw('The tearDown() method has run.');
// Verify that a broken test method is caught.
file_put_contents($this->sharedTriggerFile, 'test');
$edit['tests[Drupal\\simpletest\\Tests\\BrokenSetUpTest]'] = TRUE;
$this
->drupalPostForm('admin/config/development/testing', $edit, t('Run tests'));
$this
->assertNoRaw('Broken setup');
$this
->assertRaw('The setUp() method has run.');
$this
->assertRaw('Broken test');
$this
->assertNoRaw('The test method has run.');
$this
->assertNoRaw('Broken teardown');
$this
->assertRaw('The tearDown() method has run.');
}
else {
if (file_get_contents($this->sharedTriggerFile) === 'test') {
throw new \Exception('Broken test');
}
$this
->pass('The test method has run.');
}
}