for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
// php artisan test
namespace Tests\Unit;
// use PHPUnit\Framework\TestCase;
use Tests\TestCase;
use Joki20\Http\Controllers\PokerSquares;
use Joki20\Http\Controllers\Setup;
use Joki20\Http\Controllers\Scoring;
use Illuminate\Support\Facades\Session;
/**
* Test cases for trait Scoring.
*/
class ScoringTraitTest extends TestCase
{
// /**
// * Construct object and verify that the object is instance of class
// */
public function testCreateObjectPokerSquares()
$pokersquares = new PokerSquares();
$this->assertInstanceOf("\Joki20\Http\Controllers\PokerSquares", $pokersquares);
}