コード例 #1
0
 public function testSet_Read()
 {
     $this->transport->write(TestTJSONProtocol_Fixtures::$testArgsJSON['testSet']);
     $args = new \ThriftTest\ThriftTest_testSet_args();
     $args->read($this->protocol);
     $actual = $args->thing;
     $expected = Fixtures::$testArgs['testSet'];
     $this->assertEquals($expected, $actual);
 }