well_known_test.php 282 Bytes
Newer Older
1 2 3 4 5 6
<?php

use Google\Protobuf\GPBEmpty;

class WellKnownTest extends PHPUnit_Framework_TestCase {

7 8 9 10 11 12 13 14
    public function testNone()
    {
        $msg = new GPBEmpty();
    }

    public function testImportDescriptorProto()
    {
        $msg = new TestImportDescriptorProto();
15 16 17
    }

}