Last active
August 5, 2019 21:10
-
-
Save a3dho3yn/cbce7f4367991c385d6a79c253cccc40 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Tests; | |
use Illuminate\Foundation\Testing\TestCase as BaseTestCase; | |
class TestCase extends BaseTestCase | |
{ | |
use CreatesApplication; | |
protected $headers = ['accept' => 'application/json']; | |
public function __construct() | |
{ | |
parent::__construct(); // Illuminate\Foundation\Testing\TestCase has no __construct, so it bubbles up to PHPUnit\Framework\TestCase. But without any args | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment