well_known_test.php 282 B

1234567891011121314151617
  1. <?php
  2. use Google\Protobuf\GPBEmpty;
  3. class WellKnownTest extends PHPUnit_Framework_TestCase {
  4. public function testNone()
  5. {
  6. $msg = new GPBEmpty();
  7. }
  8. public function testImportDescriptorProto()
  9. {
  10. $msg = new TestImportDescriptorProto();
  11. }
  12. }