-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# Please enter a commit message to explain why this merge is necessary, # especially if it merges an updated upstream into a topic branch. # # Lines starting with '#' will be ignored, and an empty message aborts # the commit.
- Loading branch information
Showing
27 changed files
with
268 additions
and
635 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,4 +1,5 @@ | ||
tests/ export-ignore | ||
phpunit.xml export-ignore | ||
build.xml export-ignore | ||
test export-ignore | ||
test export-ignore | ||
.travis.yml export-ignore |
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,6 +1,5 @@ | ||
/vendor | ||
/composer.lock | ||
/build/logs | ||
/build/coverage | ||
/tests/coverage | ||
/docs | ||
/testing |
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
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
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 |
---|---|---|
@@ -0,0 +1,53 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<phpunit colors="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" stopOnError="false" stopOnFailure="false" stopOnIncomplete="false" stopOnSkipped="false" bootstrap="tests/Bootstrap.php"> | ||
<testsuites> | ||
<testsuite name="Authorization Server"> | ||
<directory suffix="Test.php">tests/authorization</directory> | ||
</testsuite> | ||
<testsuite name="Resource Server"> | ||
<directory suffix="Test.php">tests/resource</directory> | ||
</testsuite> | ||
<testsuite name="Utility Methods"> | ||
<directory suffix="Test.php">tests/util</directory> | ||
</testsuite> | ||
</testsuites> | ||
<filter> | ||
<blacklist> | ||
<directory suffix=".php">PEAR_INSTALL_DIR</directory> | ||
<directory suffix=".php">PHP_LIBDIR</directory> | ||
<directory suffix=".php">vendor</directory> | ||
<directory suffix=".php">tests</directory> | ||
<directory suffix=".php">testing</directory> | ||
</blacklist> | ||
</filter> | ||
<logging> | ||
<log type="coverage-clover" target="/tmp/coverage.xml"/> | ||
<log type="coverage-text" target="php://stdout" showUncoveredFiles="false"/> | ||
</logging> | ||
<listeners> | ||
<listener class="League\PHPUnitCoverageListener\Listener"> | ||
<arguments> | ||
<array> | ||
<element key="printer"> | ||
<object class="League\PHPUnitCoverageListener\Printer\StdOut"/> | ||
</element> | ||
<element key="hook"> | ||
<object class="League\PHPUnitCoverageListener\Hook\Travis"/> | ||
</element> | ||
<element key="namespace"> | ||
<string>League\OAuth2\Server</string> | ||
</element> | ||
<element key="repo_token"> | ||
<string>DtNuuOrBh1QBXVyRqmVldC2Au11DVti9n</string> | ||
</element> | ||
<element key="target_url"> | ||
<string>https://coveralls.io/api/v1/jobs</string> | ||
</element> | ||
<element key="coverage_dir"> | ||
<string>/tmp</string> | ||
</element> | ||
</array> | ||
</arguments> | ||
</listener> | ||
</listeners> | ||
</phpunit> |
Oops, something went wrong.