naiveproxy/third_party/protobuf/php/tests/well_known_test.php
2018-02-02 05:49:39 -05: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();
}
}