forked from egeloen/IvoryGoogleMapBundle
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #26 from Chris53897/feature/migrate-phpunit-config…
…-files chore: migrate phpunit config-files to PHPUnit 9
- Loading branch information
Showing
2 changed files
with
56 additions
and
42 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
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,32 +1,39 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
colors="true" | ||
bootstrap="Tests/autoload.php" | ||
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd" | ||
> | ||
<testsuites> | ||
<testsuite name="IvoryGoogleMapBundle Test Suite"> | ||
<directory>./Tests</directory> | ||
</testsuite> | ||
</testsuites> | ||
|
||
<php> | ||
<server name="API_KEY" value="AIzaSyAbfXoOk_L4Ryk6aFvdqeAJvbg1ShYiqAE"/> | ||
<server name="API_SECRET" value="78BBhyDNOeFG_PWqHi6XUJ3woJE="/> | ||
<server name="BROWSER_NAME" value="chrome"/> | ||
<server name="SELENIUM_HOST" value="selenium-chrome"/> | ||
<server name="CACHE_PATH" value="Tests/.cache"/> | ||
<server name="CACHE_RESET" value="false"/> | ||
</php> | ||
|
||
<coverage> | ||
<include> | ||
<directory>./</directory> | ||
</include> | ||
<exclude> | ||
<directory>./Resources</directory> | ||
<directory>./Tests</directory> | ||
<directory>./vendor</directory> | ||
</exclude> | ||
</coverage> | ||
|
||
<groups> | ||
<exclude> | ||
<group>functional</group> | ||
</exclude> | ||
</groups> | ||
|
||
<phpunit colors="true" bootstrap="Tests/autoload.php"> | ||
<testsuites> | ||
<testsuite name="IvoryGoogleMapBundle Test Suite"> | ||
<directory suffix="Test.php">./Tests</directory> | ||
</testsuite> | ||
</testsuites> | ||
<php> | ||
<server name="API_KEY" value="AIzaSyAbfXoOk_L4Ryk6aFvdqeAJvbg1ShYiqAE" /> | ||
<server name="API_SECRET" value="78BBhyDNOeFG_PWqHi6XUJ3woJE=" /> | ||
<server name="BROWSER_NAME" value="chrome" /> | ||
<server name="SELENIUM_HOST" value="selenium-chrome" /> | ||
<server name="CACHE_PATH" value="Tests/.cache" /> | ||
<server name="CACHE_RESET" value="false" /> | ||
</php> | ||
<filter> | ||
<whitelist> | ||
<directory>./</directory> | ||
<exclude> | ||
<directory>./Resources</directory> | ||
<directory>./Tests</directory> | ||
<directory>./vendor</directory> | ||
</exclude> | ||
</whitelist> | ||
</filter> | ||
<groups> | ||
<exclude> | ||
<group>functional</group> | ||
</exclude> | ||
</groups> | ||
</phpunit> |