Skip to content
Snippets Groups Projects
Unverified Commit 185513fe authored by Alex Pott's avatar Alex Pott
Browse files

Issue #3029661 by Lendude, dawehner: Move BrowserTestBase tests out of...

Issue #3029661 by Lendude, dawehner: Move BrowserTestBase tests out of modules/simpletest into /tests
parent ee822bb0
No related branches found
No related tags found
No related merge requests found
<?php
namespace Drupal\Tests\simpletest\Functional;
namespace Drupal\FunctionalTests;
use Drupal\Tests\BrowserTestBase;
/**
* This test will check SimpleTest's treatment of hook_install during setUp.
* This test will check BrowserTestBase's treatment of hook_install during
* setUp.
* Image module is used for test.
*
* @group simpletest
* @group browsertestbase
*/
class FolderTest extends BrowserTestBase {
......
<?php
namespace Drupal\Tests\simpletest\Functional;
namespace Drupal\FunctionalTests;
use Drupal\Tests\BrowserTestBase;
use Drupal\Core\Test\AssertMailTrait;
......@@ -9,7 +9,7 @@
* Tests the SimpleTest email capturing logic, the assertMail assertion and the
* drupalGetMails function.
*
* @group simpletest
* @group browsertestbase
*/
class MailCaptureTest extends BrowserTestBase {
use AssertMailTrait {
......
<?php
namespace Drupal\Tests\simpletest\Functional;
namespace Drupal\FunctionalTests;
use Drupal\Tests\BrowserTestBase;
/**
* Tests User related helper methods of WebTestBase.
*
* @group simpletest
* @group browsertestbase
*/
class UserHelpersTest extends BrowserTestBase {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment