public function recv_testMapMap() { $bin_accel = $this->input_ instanceof TBinaryProtocolAccelerated && function_exists('thrift_protocol_read_binary'); if ($bin_accel) { $result = thrift_protocol_read_binary($this->input_, '\\ThriftTest\\ThriftTest_testMapMap_result', $this->input_->isStrictRead()); } else { $rseqid = 0; $fname = null; $mtype = 0; $this->input_->readMessageBegin($fname, $mtype, $rseqid); if ($mtype == TMessageType::EXCEPTION) { $x = new TApplicationException(); $x->read($this->input_); $this->input_->readMessageEnd(); throw $x; } $result = new \ThriftTest\ThriftTest_testMapMap_result(); $result->read($this->input_); $this->input_->readMessageEnd(); } if ($result->success !== null) { return $result->success; } throw new \Exception("testMapMap failed: unknown result"); }
public function testMapMap_Read() { $this->transport->write(TestTJSONProtocol_Fixtures::$testArgsJSON['testMapMap']); $result = new \ThriftTest\ThriftTest_testMapMap_result(); $result->read($this->protocol); $actual = $result->success; $expected = Fixtures::$testArgs['testMapMapExpectedResult']; $this->assertEquals($expected, $actual); }