naiveproxy/third_party/protobuf/php/tests/well_known_test.php
2018-08-11 05:35:24 +00:00

18 lines
282 B
PHP

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