Skip to content

Commit 1495e2d

Browse files
committed
MAGETWO-44931: [HHVM] Tests of different groups failed to start
- reverting skipping tests
1 parent 7dd3cc8 commit 1495e2d

File tree

7 files changed

+0
-21
lines changed

7 files changed

+0
-21
lines changed

app/code/Magento/AdvancedPricingImportExport/Test/Unit/Model/Import/AdvancedPricingTest.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,9 +123,6 @@ class AdvancedPricingTest extends \Magento\ImportExport\Test\Unit\Model\Import\A
123123

124124
public function setUp()
125125
{
126-
if (!function_exists('libxml_set_external_entity_loader')) {
127-
$this->markTestSkipped('Skipped on HHVM. Will be fixed in MAGETWO-45033');
128-
}
129126
parent::setUp();
130127

131128
$this->jsonHelper = $this->getMock(

app/code/Magento/Bundle/Test/Unit/Model/LinkManagementTest.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,9 +100,6 @@ class LinkManagementTest extends \PHPUnit_Framework_TestCase
100100

101101
protected function setUp()
102102
{
103-
if (!function_exists('libxml_set_external_entity_loader')) {
104-
$this->markTestSkipped('Skipped on HHVM. Will be fixed in MAGETWO-45033');
105-
}
106103
$helper = new ObjectManager($this);
107104

108105
$this->productRepository = $this->getMockBuilder('Magento\Catalog\Model\ProductRepository')

app/code/Magento/Bundle/Test/Unit/Model/OptionRepositoryTest.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,6 @@ class OptionRepositoryTest extends \PHPUnit_Framework_TestCase
6868

6969
protected function setUp()
7070
{
71-
if (!function_exists('libxml_set_external_entity_loader')) {
72-
$this->markTestSkipped('Skipped on HHVM. Will be fixed in MAGETWO-45033');
73-
}
7471
$this->objectManager = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this);
7572
$this->productRepositoryMock = $this->getMock('\Magento\Catalog\Api\ProductRepositoryInterface');
7673
$this->typeMock = $this->getMock('\Magento\Bundle\Model\Product\Type', [], [], '', false);

app/code/Magento/MediaStorage/Test/Unit/App/MediaTest.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,6 @@ class MediaTest extends \PHPUnit_Framework_TestCase
6060

6161
protected function setUp()
6262
{
63-
if (!function_exists('libxml_set_external_entity_loader')) {
64-
$this->markTestSkipped('Skipped on HHVM. Will be fixed in MAGETWO-45033');
65-
}
6663
$this->closure = function () {
6764
return true;
6865
};

lib/internal/Magento/Framework/Setup/Test/Unit/ConsoleLoggerTest.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,6 @@ class ConsoleLoggerTest extends \PHPUnit_Framework_TestCase
2222

2323
public function setUp()
2424
{
25-
if (!function_exists('libxml_set_external_entity_loader')) {
26-
$this->markTestSkipped('Skipped on HHVM. Will be fixed in MAGETWO-45033');
27-
}
2825
$this->console = $this->getMock('Symfony\Component\Console\Output\OutputInterface', [], [], '', false);
2926
$outputFormatter = $this->getMock(
3027
'Symfony\Component\Console\Formatter\OutputFormatterInterface',

setup/src/Magento/Setup/Test/Unit/Controller/InstallTest.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,6 @@ public function testStartAction()
7676

7777
public function testStartActionException()
7878
{
79-
if (defined('HHVM_VERSION')) {
80-
$this->markTestSkipped('Skipped on HHVM. Will be fixed in MAGETWO-45033');
81-
}
8279
$this->webLogger->expects($this->once())->method('clear');
8380
$this->installer->expects($this->once())->method('install')
8481
->willThrowException($this->getMock('\Exception'));

setup/src/Magento/Setup/Test/Unit/Model/PhpReadinessCheckTest.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,6 @@ class PhpReadinessCheckTest extends \PHPUnit_Framework_TestCase
3232

3333
public function setUp()
3434
{
35-
if (defined('HHVM_VERSION')) {
36-
$this->markTestSkipped('Skipped on HHVM. Will be fixed in MAGETWO-45033');
37-
}
3835
$this->composerInfo = $this->getMock('Magento\Framework\Composer\ComposerInformation', [], [], '', false);
3936
$this->phpInfo = $this->getMock('Magento\Setup\Model\PhpInformation', [], [], '', false);
4037
$this->versionParser = $this->getMock('Composer\Package\Version\VersionParser', [], [], '', false);

0 commit comments

Comments
 (0)