Skip to content
This repository was archived by the owner on May 20, 2019. It is now read-only.

Commit 1a00b49

Browse files
committed
magento-engcom/bulk-api#4 Support for Async operations in WebAPI
- enable app isolation for the Config Test
1 parent 29a9c77 commit 1a00b49

File tree

1 file changed

+15
-0
lines changed
  • dev/tests/integration/testsuite/Magento/Framework/MessageQueue

1 file changed

+15
-0
lines changed

dev/tests/integration/testsuite/Magento/Framework/MessageQueue/ConfigTest.php

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,27 +13,39 @@
1313
*/
1414
class ConfigTest extends \PHPUnit\Framework\TestCase
1515
{
16+
/**
17+
* @magentoAppIsolation enabled
18+
*/
1619
public function testGetConsumers()
1720
{
1821
$consumers = $this->getConfigData()->getConsumers();
1922
$expectedParsedConfig = include __DIR__ . '/_files/valid_expected_queue.php';
2023
$this->assertEquals($expectedParsedConfig['consumers'], $consumers);
2124
}
2225

26+
/**
27+
* @magentoAppIsolation enabled
28+
*/
2329
public function testGetPublishers()
2430
{
2531
$publishers = $this->getConfigData()->getPublishers();
2632
$expectedParsedConfig = include __DIR__ . '/_files/valid_expected_queue.php';
2733
$this->assertEquals($expectedParsedConfig['publishers'], $publishers);
2834
}
2935

36+
/**
37+
* @magentoAppIsolation enabled
38+
*/
3039
public function testGetBinds()
3140
{
3241
$binds = $this->getConfigData()->getBinds();
3342
$expectedParsedConfig = include __DIR__ . '/_files/valid_expected_queue.php';
3443
$this->assertEquals($expectedParsedConfig['binds'], $binds);
3544
}
3645

46+
/**
47+
* @magentoAppIsolation enabled
48+
*/
3749
public function testGetMaps()
3850
{
3951
$topicName = 'topic.broker.test';
@@ -45,6 +57,9 @@ public function testGetMaps()
4557
);
4658
}
4759

60+
/**
61+
* @magentoAppIsolation enabled
62+
*/
4863
public function testGetTopic()
4964
{
5065
$topicName = 'topic.broker.test';

0 commit comments

Comments
 (0)