for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace NotificationChannels\FortySixElks\Test;
use NotificationChannels\FortySixElks\FortySixElksMMS;
use NotificationChannels\FortySixElks\FortySixElksSMS;
class FortySixElksMediaTest extends \PHPUnit_Framework_TestCase
{
public function testSMSTest()
$this->assertNotNull(FortySixElksSMS::ENDPOINT);
$class = new FortySixElksSMS();
//test content
$this->assertInstanceOf(FortySixElksSMS::class, $class->line('test line'));
$this->assertContains('test', $class->getContent());
}
public function testMMSTest()
$this->assertNotNull(FortySixElksMMS::ENDPOINT);
$class = new FortySixElksMMS();
$this->assertInstanceOf(FortySixElksMMS::class, $class->line('test line'));