forked from Adyen/adyen-php-api-library
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change PHPUnit configuration (Adyen#135)
Add the copyright ASCII and change the list of files read.
- Loading branch information
1 parent
3174037
commit 7e27a56
Showing
1 changed file
with
24 additions
and
7 deletions.
There are no files selected for viewing
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
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> |