aboutsummaryrefslogtreecommitdiff
path: root/php/tests/well_known_test.php
diff options
context:
space:
mode:
authorPaul Yang <TeBoring@users.noreply.github.com>2016-11-16 11:07:43 -0800
committerGitHub <noreply@github.com>2016-11-16 11:07:43 -0800
commit99564c3347223b92e49bd40f37b8c0d6fc6a3971 (patch)
tree4f5de7e413798a02a9a66847560de13c973090d1 /php/tests/well_known_test.php
parentfc27ead10719f768eb990accac434f48efe10d16 (diff)
downloadprotobuf-99564c3347223b92e49bd40f37b8c0d6fc6a3971.tar.gz
protobuf-99564c3347223b92e49bd40f37b8c0d6fc6a3971.tar.bz2
protobuf-99564c3347223b92e49bd40f37b8c0d6fc6a3971.zip
Rename Empty to GPBEmpty in php generated file.
In php, class name cannot be "Empty". Modified code generator to (#2375) generate GPBEmpty instead (for google.protobuf.Empty only). Also change runtime code to work with the new generated code accordingly.
Diffstat (limited to 'php/tests/well_known_test.php')
-rw-r--r--php/tests/well_known_test.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/php/tests/well_known_test.php b/php/tests/well_known_test.php
new file mode 100644
index 00000000..30715ba9
--- /dev/null
+++ b/php/tests/well_known_test.php
@@ -0,0 +1,13 @@
+<?php
+
+require_once("google/protobuf/empty.pb.php");
+
+use Google\Protobuf\GPBEmpty;
+
+class WellKnownTest extends PHPUnit_Framework_TestCase {
+
+ public function testNone() {
+ $msg = new GPBEmpty();
+ }
+
+}