Skip to content

Instantly share code, notes, and snippets.

@wanmigs
wanmigs / Testcase.php
Last active October 18, 2023 10:42
Create, Update, Delete and Fetch TestCase
<?php
namespace Tests;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase
{
use CreatesApplication;