Remove cafe24 SMS driver from unit test

This commit is contained in:
Kijin Sung 2022-10-30 17:37:06 +09:00
parent 80a7a9583a
commit 7f260be361

View file

@ -22,13 +22,11 @@ class SMSTest extends \Codeception\TestCase\Test
$drivers = Rhymix\Framework\SMS::getSupportedDrivers();
$this->assertTrue(isset($drivers['dummy']));
$this->assertTrue(isset($drivers['apistore']));
$this->assertTrue(isset($drivers['cafe24']));
$this->assertTrue(isset($drivers['coolsms']));
$this->assertTrue(isset($drivers['solapi']));
$this->assertTrue(isset($drivers['ppurio']));
$this->assertEquals('Dummy', $drivers['dummy']['name']);
$this->assertTrue(in_array('api_user', $drivers['apistore']['required']));
$this->assertTrue(in_array('api_user', $drivers['cafe24']['required']));
$this->assertTrue(in_array('api_key', $drivers['coolsms']['required']));
$this->assertTrue(in_array('api_user', $drivers['ppurio']['required']));
$this->assertTrue(in_array('api_key', $drivers['solapi']['required']));
@ -36,7 +34,6 @@ class SMSTest extends \Codeception\TestCase\Test
$this->assertTrue($drivers['coolsms']['api_spec']['delay_supported']);
$this->assertTrue($drivers['solapi']['api_spec']['mms_supported']);
$this->assertTrue($drivers['solapi']['api_spec']['delay_supported']);
$this->assertFalse($drivers['cafe24']['api_spec']['mms_supported']);
}
public function testSenderAndRecipients()