You can use the composer autoloading to do that.
All you need is phpunit in the "vendor" folder of your application and composer installed.
If you do not have composer installed, follow this tutorial
http://magento2-tuts.blogspot.de/2016/08/ubuntu-install-composer.html
If you do not have phpunit installed you can follow this totorial
http://magento2-tuts.blogspot.de/2016/08/use-composer-to-install-phpunit.html
now you can simply add a file "phpunit.xml" in your projectroot with following content:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<phpunit bootstrap="vendor/autoload.php" | |
colors="true" | |
convertErrorsToExceptions="true" | |
convertNoticesToExceptions="true" | |
convertWarningsToExceptions="true" | |
processIsolations="true" | |
stopOnFailure="false" | |
syntacCheck="false" | |
> | |
<testsuites> | |
<testsuite> | |
<directory> | |
app/test | |
</directory> | |
</testsuite> | |
</testsuites> | |
</phpunit> |
Now you can switch to your terminal and go tho the projectroot and type:
phpunit
Thats it. All your dependencies will be required automaticly and your testsuites in the folder app/test will be executed
Keine Kommentare:
Kommentar veröffentlichen