Skip to content

Instantly share code, notes, and snippets.

@morrislaptop
Created December 1, 2020 08:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save morrislaptop/903c531bd1767b1371a711f33baebf3b to your computer and use it in GitHub Desktop.
Save morrislaptop/903c531bd1767b1371a711f33baebf3b to your computer and use it in GitHub Desktop.
<?php
namespace App\Http\Controllers;
use PHPUnit\Framework\TestCase;
class ControllerTest extends TestCase
{
/**
* A basic test example.
*
* @return void
*/
public function testBasicTest()
{
$c = new Controller();
$this->assertTrue($c->returnTrue());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment