This repository was archived by the owner on May 20, 2019. It is now read-only.
File tree 1 file changed +15
-0
lines changed
dev/tests/integration/testsuite/Magento/Framework/MessageQueue
1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change 13
13
*/
14
14
class ConfigTest extends \PHPUnit \Framework \TestCase
15
15
{
16
+ /**
17
+ * @magentoAppIsolation enabled
18
+ */
16
19
public function testGetConsumers ()
17
20
{
18
21
$ consumers = $ this ->getConfigData ()->getConsumers ();
19
22
$ expectedParsedConfig = include __DIR__ . '/_files/valid_expected_queue.php ' ;
20
23
$ this ->assertEquals ($ expectedParsedConfig ['consumers ' ], $ consumers );
21
24
}
22
25
26
+ /**
27
+ * @magentoAppIsolation enabled
28
+ */
23
29
public function testGetPublishers ()
24
30
{
25
31
$ publishers = $ this ->getConfigData ()->getPublishers ();
26
32
$ expectedParsedConfig = include __DIR__ . '/_files/valid_expected_queue.php ' ;
27
33
$ this ->assertEquals ($ expectedParsedConfig ['publishers ' ], $ publishers );
28
34
}
29
35
36
+ /**
37
+ * @magentoAppIsolation enabled
38
+ */
30
39
public function testGetBinds ()
31
40
{
32
41
$ binds = $ this ->getConfigData ()->getBinds ();
33
42
$ expectedParsedConfig = include __DIR__ . '/_files/valid_expected_queue.php ' ;
34
43
$ this ->assertEquals ($ expectedParsedConfig ['binds ' ], $ binds );
35
44
}
36
45
46
+ /**
47
+ * @magentoAppIsolation enabled
48
+ */
37
49
public function testGetMaps ()
38
50
{
39
51
$ topicName = 'topic.broker.test ' ;
@@ -45,6 +57,9 @@ public function testGetMaps()
45
57
);
46
58
}
47
59
60
+ /**
61
+ * @magentoAppIsolation enabled
62
+ */
48
63
public function testGetTopic ()
49
64
{
50
65
$ topicName = 'topic.broker.test ' ;
You can’t perform that action at this time.
0 commit comments