mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
18 lines
282 B
PHP
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();
|
||
|
}
|
||
|
|
||
|
}
|