summaryrefslogtreecommitdiff
path: root/lib/facebook-graph-sdk/phpunit.xml.dist
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2017-01-16 22:04:43 +0100
committeremkael <emkael@tlen.pl>2017-01-16 22:50:24 +0100
commit677953067f2bb5502a70f0d004f1ac844b18a128 (patch)
tree003c26454b543c2a8d73f0602446482fdbbef8db /lib/facebook-graph-sdk/phpunit.xml.dist
parentf7b2bfae9778af2c99e0c7fe7b2634e0f4f0973f (diff)
* Facebook support
Diffstat (limited to 'lib/facebook-graph-sdk/phpunit.xml.dist')
-rw-r--r--lib/facebook-graph-sdk/phpunit.xml.dist22
1 files changed, 22 insertions, 0 deletions
diff --git a/lib/facebook-graph-sdk/phpunit.xml.dist b/lib/facebook-graph-sdk/phpunit.xml.dist
new file mode 100644
index 0000000..f6707bd
--- /dev/null
+++ b/lib/facebook-graph-sdk/phpunit.xml.dist
@@ -0,0 +1,22 @@
+<phpunit
+ colors="true"
+ stderr="true"
+ convertErrorsToExceptions="true"
+ convertNoticesToExceptions="true"
+ convertWarningsToExceptions="true"
+ stopOnFailure="false"
+ bootstrap="tests/bootstrap.php">
+ <testsuites>
+ <testsuite name="Facebook PHP SDK Test Suite">
+ <directory>./tests</directory>
+ </testsuite>
+ </testsuites>
+ <filter>
+ <whitelist>
+ <directory suffix=".php">./src/Facebook</directory>
+ </whitelist>
+ </filter>
+ <listeners>
+ <listener class="\Mockery\Adapter\Phpunit\TestListener"/>
+ </listeners>
+</phpunit>