for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Tzsk\Sms\Tests;
class HelpersTest extends TestCase
{
public function testHelperExists()
$this->assertTrue(function_exists('sms'));
}
public function testHelperReturnsCorrectInstance()
$sms = app('tzsk-sms');
$this->assertTrue(sms() instanceof $sms);