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