示例#1
0
 public function testSendSMS()
 {
     $command = new Command();
     $command->sendSMS('123', 'Some Message');
     // Get the commands
     $commands = $command->all();
     $this->assertCount(2, $commands);
     $this->assertEquals('AT+CMGS="123"', $commands[0][ATCommandInterface::EXE]);
     $this->assertEquals('Some Message', $commands[1][ATCommandInterface::EXE]);
 }