We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5000974 commit bcdbb6fCopy full SHA for bcdbb6f
Tests/Functional/BundleInitializationTest.php
@@ -6,6 +6,7 @@
6
7
use AsyncAws\S3\S3Client;
8
use AsyncAws\Ses\SesClient;
9
+use AsyncAws\Sns\SnsClient;
10
use AsyncAws\Sqs\SqsClient;
11
use AsyncAws\Symfony\Bundle\AsyncAwsBundle;
12
use Nyholm\BundleTest\BaseBundleTestCase;
@@ -88,6 +89,10 @@ public function testNotRegisterSqs()
88
89
90
public function testExceptionWhenConfigureServiceNotInstalled()
91
{
92
+ if (class_exists(SnsClient::class)) {
93
+ self::markTestSkipped('SNSClient is installed..');
94
+ }
95
+
96
$kernel = $this->createKernel();
97
$kernel->addConfigFile(__DIR__ . '/Resources/config/not_installed_service.yaml');
98
0 commit comments