| 1234567891011121314151617 |
- <?php
- use Google\Protobuf\GPBEmpty;
- class WellKnownTest extends PHPUnit_Framework_TestCase {
- public function testNone()
- {
- $msg = new GPBEmpty();
- }
- public function testImportDescriptorProto()
- {
- $msg = new TestImportDescriptorProto();
- }
- }
|