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