public function test_send_calls_adapter_send()
 {
     $this->adapter->expects($this->once())->method('send')->with($this->message)->will($this->returnValue('response text'));
     $conn = new Connection($this->adapter);
     $res = $conn->send($this->message);
     $this->assertInternalType('string', $res);
 }