<?php
namespace CompanyName\ProjectName;
use Tests\TestCase;
use Illuminate\Foundation\Testing\RefreshDatabase;
class SomeKindOfTest extends TestCase
{
/**
* A basic test example.
*
* @return void
*/
public function ableToDoSomething()
{
dd('ableToDoSomething was called!!!!!!!!!!!');
}
}