naiveproxy/third_party/protobuf/php/tests/well_known_test.php

18 lines
282 B
PHP
Raw Normal View History

2018-08-11 08:35:24 +03:00
<?php
use Google\Protobuf\GPBEmpty;
class WellKnownTest extends PHPUnit_Framework_TestCase {
public function testNone()
{
$msg = new GPBEmpty();
}
public function testImportDescriptorProto()
{
$msg = new TestImportDescriptorProto();
}
}