Skip to content

Commit bcdbb6f

Browse files
authored
Adding Lambda and SNS (#170)
* Adding Lambda and SNS * cs
1 parent 5000974 commit bcdbb6f

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Tests/Functional/BundleInitializationTest.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
use AsyncAws\S3\S3Client;
88
use AsyncAws\Ses\SesClient;
9+
use AsyncAws\Sns\SnsClient;
910
use AsyncAws\Sqs\SqsClient;
1011
use AsyncAws\Symfony\Bundle\AsyncAwsBundle;
1112
use Nyholm\BundleTest\BaseBundleTestCase;
@@ -88,6 +89,10 @@ public function testNotRegisterSqs()
8889

8990
public function testExceptionWhenConfigureServiceNotInstalled()
9091
{
92+
if (class_exists(SnsClient::class)) {
93+
self::markTestSkipped('SNSClient is installed..');
94+
}
95+
9196
$kernel = $this->createKernel();
9297
$kernel->addConfigFile(__DIR__ . '/Resources/config/not_installed_service.yaml');
9398

0 commit comments

Comments
 (0)