Example #1
0
 public function testStruct_Write()
 {
     $args = new \ThriftTest\ThriftTest_testStruct_args();
     $args->thing = Fixtures::$testArgs['testStruct'];
     $args->write($this->protocol);
     $actual = $this->transport->read(BUFSIZ);
     $expected = TestTJSONProtocol_Fixtures::$testArgsJSON['testStruct'];
     $this->assertEquals($expected, $actual);
 }