Skip to content

Instantly share code, notes, and snippets.

@duncanmcclean
Created March 24, 2019 18:56
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 duncanmcclean/3d71a4cf2f75def27f56e2e5874d58a9 to your computer and use it in GitHub Desktop.
Save duncanmcclean/3d71a4cf2f75def27f56e2e5874d58a9 to your computer and use it in GitHub Desktop.
<?php
namespace Tests\Feature;
use Tests\TestCase;
use Illuminate\Foundation\Testing\RefreshDatabase;
class ExampleTest extends TestCase
{
/**
* A basic test example.
*
* @return void
*/
public function testBasicTest()
{
$response = $this->get('/');
$response->assertStatus(200);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment