for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Gahlawat\Slack\Tests\Unit;
use Gahlawat\Slack\Slack;
use Gahlawat\Slack\Tests\TestCase;
class ObjectTest extends TestCase
{
public function testObjectCreation()
$slack = new Slack;
$this->assertInstanceOf(Slack::class, $slack);
}