Skip to content

Instantly share code, notes, and snippets.

@Nick0603
Last active September 13, 2019 07:51
Show Gist options
  • Save Nick0603/8ac0a0d2f6b2e5a8002082c3e0c3a81e to your computer and use it in GitHub Desktop.
Save Nick0603/8ac0a0d2f6b2e5a8002082c3e0c3a81e to your computer and use it in GitHub Desktop.
<?php
namespace Tests\Unit;
use Tests\TestCase;
use Illuminate\Foundation\Testing\RefreshDatabase;
class ExampleTest extends TestCase
{
/**
* A basic test example.
*
* @return void
*/
public function testBasicTest()
{
$this->assertTrue(true);
}
/**
* @return void
*/
public function testWillFail()
{
$this->assertEquals(1, 2);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment