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