You are here

public function SmsFrameworkGatewayEntityTest::testGetMaxRecipientsOutgoingCustom in SMS Framework 2.x

Same name and namespace in other branches
  1. 8 tests/src/Kernel/SmsFrameworkGatewayEntityTest.php \Drupal\Tests\sms\Kernel\SmsFrameworkGatewayEntityTest::testGetMaxRecipientsOutgoingCustom()
  2. 2.1.x tests/src/Kernel/SmsFrameworkGatewayEntityTest.php \Drupal\Tests\sms\Kernel\SmsFrameworkGatewayEntityTest::testGetMaxRecipientsOutgoingCustom()

Tests 'max outgoing recipients' annotation custom value.

File

tests/src/Kernel/SmsFrameworkGatewayEntityTest.php, line 188

Class

SmsFrameworkGatewayEntityTest
Tests SMS Framework gateway entity.

Namespace

Drupal\Tests\sms\Kernel

Code

public function testGetMaxRecipientsOutgoingCustom() {
  $gateway = $this
    ->createGateway([
    'plugin' => 'memory',
  ]);
  $this
    ->assertEquals(-1, $gateway
    ->getMaxRecipientsOutgoing());
}