aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/protobuf/3.4.0/php/tests/well_known_test.php
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/protobuf/3.4.0/php/tests/well_known_test.php')
-rw-r--r--third_party/protobuf/3.4.0/php/tests/well_known_test.php17
1 files changed, 17 insertions, 0 deletions
diff --git a/third_party/protobuf/3.4.0/php/tests/well_known_test.php b/third_party/protobuf/3.4.0/php/tests/well_known_test.php
new file mode 100644
index 0000000000..0c2aec13a9
--- /dev/null
+++ b/third_party/protobuf/3.4.0/php/tests/well_known_test.php
@@ -0,0 +1,17 @@
+<?php
+
+use Google\Protobuf\GPBEmpty;
+
+class WellKnownTest extends PHPUnit_Framework_TestCase {
+
+ public function testNone()
+ {
+ $msg = new GPBEmpty();
+ }
+
+ public function testImportDescriptorProto()
+ {
+ $msg = new TestImportDescriptorProto();
+ }
+
+}