Skip to content

Commit 1038869

Browse files
authored
Merge pull request #123 from magento/MQE-983
MQE-983: Unit Test for Module Resolver
2 parents 40b85ab + 2703d1d commit 1038869

File tree

6 files changed

+349
-29
lines changed

6 files changed

+349
-29
lines changed

composer.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,9 @@
2424
"squizlabs/php_codesniffer": "1.5.3",
2525
"sebastian/phpcpd": "~3.0",
2626
"brainmaestro/composer-git-hooks": "^2.3",
27-
"codeception/aspect-mock": "^2.0",
28-
"goaop/framework": "2.1.2",
27+
"doctrine/cache": "<1.7.0",
28+
"codeception/aspect-mock": "^3.0",
29+
"goaop/framework": "2.2.0",
2930
"codacy/coverage": "^1.4",
3031
"phpmd/phpmd": "^2.6.0",
3132
"rregeer/phpunit-coverage-check": "^0.1.4",

composer.lock

Lines changed: 99 additions & 25 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dev/tests/.cache/.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Ignore everything in this directory
2+
*
3+
# Except this file
4+
!.gitignore

dev/tests/_bootstrap.php

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,14 @@
1313
$kernel = \AspectMock\Kernel::getInstance();
1414
$kernel->init([
1515
'debug' => true,
16-
'includePaths' => [PROJECT_ROOT . '/src']
16+
'includePaths' => [PROJECT_ROOT . '/src'],
17+
'cacheDir' => PROJECT_ROOT .
18+
DIRECTORY_SEPARATOR .
19+
'dev' .
20+
DIRECTORY_SEPARATOR .
21+
'tests' .
22+
DIRECTORY_SEPARATOR .
23+
'.cache'
1724
]);
1825

1926
// set mftf appplication context

0 commit comments

Comments
 (0)