Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Convert web tests to browser tests #5

Closed
wants to merge 8 commits into from
@@ -1,8 +1,8 @@
<?php

namespace Drupal\sms_blast\Tests;
namespace Drupal\Tests\sms_blast\Functional;

use Drupal\sms\Tests\SmsFrameworkWebTestBase;
use Drupal\Tests\sms\Functional\SmsFrameworkBrowserTestBase;
use Drupal\field\Entity\FieldStorageConfig;
use Drupal\field\Entity\FieldConfig;
use Drupal\Component\Utility\Unicode;
Expand All @@ -14,7 +14,7 @@
* @group SMS Framework
* @group legacy
*/
class SmsBlastWebTest extends SmsFrameworkWebTestBase {
class SmsBlastBrowserTest extends SmsFrameworkBrowserTestBase {

public static $modules = ['sms', 'user', 'sms_blast'];

Expand Down
@@ -1,10 +1,10 @@
<?php

namespace Drupal\sms_devel\Tests;
namespace Drupal\Tests\sms_devel\Functional;

use Drupal\Core\Datetime\DrupalDateTime;
use Drupal\Core\Url;
use Drupal\sms\Tests\SmsFrameworkWebTestBase;
use Drupal\Tests\sms\Functional\SmsFrameworkBrowserTestBase;
use Drupal\sms\Entity\SmsMessage;
use Drupal\sms\Direction;

Expand All @@ -14,7 +14,7 @@
* @group SMS Framework
* @group legacy
*/
class SmsDevelMessageTest extends SmsFrameworkWebTestBase {
class SmsDevelMessageTest extends SmsFrameworkBrowserTestBase {

public static $modules = ['sms_devel'];

Expand Down
@@ -1,13 +1,13 @@
<?php

namespace Drupal\sms_sendtophone\Tests;
namespace Drupal\Tests\sms_sendtophone\Functional;

use Drupal\Component\Utility\Unicode;
use Drupal\Core\Entity\Entity\EntityViewDisplay;
use Drupal\field\Entity\FieldConfig;
use Drupal\field\Entity\FieldStorageConfig;
use Drupal\node\Entity\NodeType;
use Drupal\sms\Tests\SmsFrameworkWebTestBase;
use Drupal\Tests\sms\Functional\SmsFrameworkBrowserTestBase;
use Drupal\sms\Entity\PhoneNumberSettings;

/**
Expand All @@ -16,7 +16,7 @@
* @group SMS Framework
* @group legacy
*/
class SmsSendToPhoneWebTest extends SmsFrameworkWebTestBase {
class SmsSendToPhoneBrowserTest extends SmsFrameworkBrowserTestBase {

public static $modules = [
'sms',
Expand Down
@@ -1,8 +1,8 @@
<?php

namespace Drupal\sms_user\Tests;
namespace Drupal\Tests\sms_user\Functional;

use Drupal\sms\Tests\SmsFrameworkWebTestBase;
use Drupal\Tests\sms\Functional\SmsFrameworkBrowserTestBase;
use Drupal\Core\Url;

/**
Expand All @@ -11,7 +11,7 @@
* @group SMS User
* @group legacy
*/
class SmsFrameworkUserMenuLinksTest extends SmsFrameworkWebTestBase {
class SmsFrameworkUserMenuLinksTest extends SmsFrameworkBrowserTestBase {

/**
* Modules to enable.
Expand Down
@@ -1,8 +1,8 @@
<?php

namespace Drupal\sms_user\Tests;
namespace Drupal\Tests\sms_user\Functional;

use Drupal\sms\Tests\SmsFrameworkWebTestBase;
use Drupal\Tests\sms\Functional\SmsFrameworkBrowserTestBase;
use Drupal\Core\Url;

/**
Expand All @@ -11,7 +11,7 @@
* @group SMS User
* @group legacy
*/
class SmsFrameworkUserSettingsTest extends SmsFrameworkWebTestBase {
class SmsFrameworkUserSettingsTest extends SmsFrameworkBrowserTestBase {

/**
* Modules to enable.
Expand Down
211 changes: 0 additions & 211 deletions src/Tests/SmsFrameworkGatewayAdminTest.php

This file was deleted.