aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/protobuf/3.4.0/php/tests/well_known_test.php
blob: 0c2aec13a926752be0f4e6f24c58cea770bcd1e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php

use Google\Protobuf\GPBEmpty;

class WellKnownTest extends PHPUnit_Framework_TestCase {

    public function testNone()
    {
        $msg = new GPBEmpty();
    }

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

}