Skip to content

Commit d33a39c

Browse files
author
Eugene Tulika
committed
MAGETWO-34577: Stabilize Builds
- skip annotation check for unit tests
1 parent d6c2958 commit d33a39c

File tree

15 files changed

+38
-1
lines changed

15 files changed

+38
-1
lines changed

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
* Copyright © 2015 Magento. All rights reserved.
55
* See COPYING.txt for license details.
66
*/
7+
8+
// @codingStandardsIgnoreFile
9+
710
namespace Magento\Bundle\Test\Unit\Model;
811

912
class OptionRepositoryTest extends \PHPUnit_Framework_TestCase

app/code/Magento/Bundle/Test/Unit/Model/Plugin/BundleLoadOptionsTest.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
* Copyright © 2015 Magento. All rights reserved.
55
* See COPYING.txt for license details.
66
*/
7+
8+
// @codingStandardsIgnoreFile
9+
710
namespace Magento\Bundle\Test\Unit\Model\Plugin;
811

912
class BundleLoadOptionsTest extends \PHPUnit_Framework_TestCase

app/code/Magento/Bundle/Test/Unit/Model/Plugin/BundleSaveOptionsTest.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
* See COPYING.txt for license details.
66
*/
77

8+
// @codingStandardsIgnoreFile
9+
810
namespace Magento\Bundle\Test\Unit\Model\Plugin;
911

1012
use \Magento\Bundle\Model\Plugin\BundleSaveOptions;

app/code/Magento/Catalog/Test/Unit/Model/ObserverTest.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
* See COPYING.txt for license details.
55
*/
66

7+
// @codingStandardsIgnoreFile
8+
79
namespace Magento\Catalog\Test\Unit\Model;
810

911
use Magento\Framework\TestFramework\Unit\Helper\ObjectManager;

app/code/Magento/Catalog/Test/Unit/Model/ProductLink/ManagementTest.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
* Copyright © 2015 Magento. All rights reserved.
44
* See COPYING.txt for license details.
55
*/
6+
7+
// @codingStandardsIgnoreFile
8+
69
namespace Magento\Catalog\Test\Unit\Model\ProductLink;
710

811
use Magento\Framework\Exception\NoSuchEntityException;

app/code/Magento/Catalog/Test/Unit/Model/ProductRepositoryTest.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
* Copyright © 2015 Magento. All rights reserved.
55
* See COPYING.txt for license details.
66
*/
7+
8+
// @codingStandardsIgnoreFile
9+
710
namespace Magento\Catalog\Test\Unit\Model;
811

912
use Magento\Framework\TestFramework\Unit\Helper\ObjectManager;

app/code/Magento/Payment/Test/Unit/Model/Method/FreeTest.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
* Copyright © 2015 Magento. All rights reserved.
44
* See COPYING.txt for license details.
55
*/
6+
7+
// @codingStandardsIgnoreFile
8+
69
namespace Magento\Payment\Test\Unit\Model\Method;
710

811
class FreeTest extends \PHPUnit_Framework_TestCase

app/code/Magento/Quote/Test/Unit/Model/Quote/Payment/ToOrderPaymentTest.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
* See COPYING.txt for license details.
55
*/
66

7+
// @codingStandardsIgnoreFile
8+
79
namespace Magento\Quote\Test\Unit\Model\Quote\Payment;
810

911
use Magento\Payment\Model\Method\Substitution;

app/code/Magento/Sales/Test/Unit/Model/Email/TemplateTest.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
* See COPYING.txt for license details.
55
*/
66

7+
// @codingStandardsIgnoreFile
8+
79
/**
810
* Test class for \Magento\Sales\Model\Email\Template
911
*/

dev/tests/integration/etc/install-config-mysql.php.dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
return [
88
'db_host' => 'localhost',
99
'db_user' => 'root',
10-
'db_pass' => '',
10+
'db_pass' => 'root',
1111
'db_name' => 'magento_integration_tests',
1212
'db_prefix' => '',
1313
'backend_frontname' => 'backend',

0 commit comments

Comments
 (0)