public function testSendSms()
 {
     $sims = array(self::SIM_ID);
     $text = 'The quick brown fox jumps over the lazy dog';
     $result = $this->simMapper->sendSms($sims, $text);
     $this->assertNotNull($result);
 }