public function SmsFrameworkGatewayEntityTest::testSupportsIncoming in SMS Framework 8
Same name and namespace in other branches
- 2.x tests/src/Kernel/SmsFrameworkGatewayEntityTest.php \Drupal\Tests\sms\Kernel\SmsFrameworkGatewayEntityTest::testSupportsIncoming()
- 2.1.x tests/src/Kernel/SmsFrameworkGatewayEntityTest.php \Drupal\Tests\sms\Kernel\SmsFrameworkGatewayEntityTest::testSupportsIncoming()
Tests 'incoming' annotation custom value.
File
- tests/
src/ Kernel/ SmsFrameworkGatewayEntityTest.php, line 89
Class
- SmsFrameworkGatewayEntityTest
- Tests SMS Framework gateway entity.
Namespace
Drupal\Tests\sms\KernelCode
public function testSupportsIncoming() {
$gateway = $this
->createGateway([
'plugin' => 'incoming',
]);
$this
->assertTrue($gateway
->supportsIncoming());
}