Skip to content

Commit

Permalink
Change PHPUnit configuration (Adyen#135)
Browse files Browse the repository at this point in the history
Add the copyright ASCII and change the list of files read.
  • Loading branch information
msilvagarcia authored Nov 4, 2019
1 parent 3174037 commit 7e27a56
Showing 1 changed file with 24 additions and 7 deletions.
31 changes: 24 additions & 7 deletions phpunit.xml
Original file line number Diff line number Diff line change
@@ -1,12 +1,29 @@
<!--
~ ######
~ ######
~ ############ ####( ###### #####. ###### ############ ############
~ ############# #####( ###### #####. ###### ############# #############
~ ###### #####( ###### #####. ###### ##### ###### ##### ######
~ ###### ###### #####( ###### #####. ###### ##### ##### ##### ######
~ ###### ###### #####( ###### #####. ###### ##### ##### ######
~ ############# ############# ############# ############# ##### ######
~ ############ ############ ############# ############ ##### ######
~ ######
~ #############
~ ############
~
~ Adyen API Library for PHP
~
~ Copyright (c) 2019 Adyen B.V.
~ This file is open source and available under the MIT license.
~ See the LICENSE file for more info.
~
-->

<phpunit bootstrap="tests/bootstrap.php" colors="true">
<testsuites>
<testsuite name="Adyen PHP Test Suite">
<directory suffix="Test.php">tests</directory>
<directory>./tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">./src</directory>
</whitelist>
</filter>
</phpunit>
</phpunit>

0 comments on commit 7e27a56

Please sign in to comment.