芝麻web文件管理V1.00
编辑当前文件:/home/rejoandoctor/public_html/vendor/simplesoftwareio/simple-qrcode/tests/DataTypes/SMSTest.php
sms = new SMS(); } public function test_it_generates_a_proper_format_with_a_phone_number() { $this->sms->create(['555-555-5555']); $properFormat = 'sms:555-555-5555'; $this->assertEquals($properFormat, strval($this->sms)); } public function test_it_generate_a_proper_format_with_a_message() { $this->sms->create([null, 'foo']); $properFormat = 'sms:&body=foo'; $this->assertEquals($properFormat, strval($this->sms)); } public function test_it_generates_a_proper_format_with_a_phone_number_and_message() { $this->sms->create(['555-555-5555', 'foo']); $properFormat = 'sms:555-555-5555&body=foo'; $this->assertEquals($properFormat, strval($this->sms)); } }