Merge pull request #228 from Adyen/init-unit-tests
Initial unit tests setup
Showing
... | ... | @@ -7,8 +7,18 @@ |
"OSL-3.0", | ||
"AFL-3.0" | ||
], | ||
"repositories": [ | ||
{ | ||
"type": "composer", | ||
"url": "https://repo.magento.com/" | ||
} | ||
], | ||
"require": { | ||
"adyen/php-api-library": "*" | ||
"adyen/php-api-library": "*", | ||
"magento/framework": ">=100.1.0" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "~5" | ||
}, | ||
"autoload": { | ||
"files": [ | ||
... | ... | @@ -17,5 +27,10 @@ |
"psr-4": { | ||
"Adyen\\Payment\\": "" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Adyen\\Payment\\Tests\\": "tests/" | ||
} | ||
} | ||
} |
phpunit.xml
0 → 100644
tests/Helper/DataTest.php
0 → 100755
Please register or sign in to comment