aboutsummaryrefslogtreecommitdiff
path: root/phpunit.xml
diff options
context:
space:
mode:
authorPaul Yang <TeBoring@users.noreply.github.com>2016-09-15 11:09:01 -0700
committerGitHub <noreply@github.com>2016-09-15 11:09:01 -0700
commite0e54661f76183684dca66694967a60cbb10f04e (patch)
tree0a2a20f984705fdf6ef13de8829901b80f88efb5 /phpunit.xml
parent86fcd879b38505446799b2f2a2929415ddad620a (diff)
downloadprotobuf-e0e54661f76183684dca66694967a60cbb10f04e.tar.gz
protobuf-e0e54661f76183684dca66694967a60cbb10f04e.tar.bz2
protobuf-e0e54661f76183684dca66694967a60cbb10f04e.zip
Check in php implementation. (#2052)
This pull request includes two implementation: C extension and PHP package. Both implementations support encode/decode of singular, repeated and map fields.
Diffstat (limited to 'phpunit.xml')
-rw-r--r--phpunit.xml13
1 files changed, 13 insertions, 0 deletions
diff --git a/phpunit.xml b/phpunit.xml
new file mode 100644
index 00000000..d311c509
--- /dev/null
+++ b/phpunit.xml
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<phpunit bootstrap="./vendor/autoload.php"
+ colors="true">
+ <testsuites>
+ <testsuite name="protobuf-tests">
+ <file>php/tests/php_implementation_test.php</file>
+ <file>php/tests/array_test.php</file>
+ <file>php/tests/encode_decode_test.php</file>
+ <file>php/tests/generated_class_test.php</file>
+ <file>php/tests/map_field_test.php</file>
+ </testsuite>
+ </testsuites>
+</phpunit>