for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Yabacon\Paystack\Tests;
use Yabacon\Paystack;
class PaystackTest extends \PHPUnit_Framework_TestCase
{
public function testInitializeWithInvalidSecretKey()
$this->expectException(\InvalidArgumentException::class);
$r = new Paystack('p');
}