File tree 1 file changed +8
-1
lines changed 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change 29
29
use Illuminate \Support \Facades \Artisan ;
30
30
use Illuminate \Support \Facades \Route ;
31
31
use Illuminate \Support \Str ;
32
+ use phpmock \phpunit \PHPMock ;
33
+ use Spatie \Snapshots \MatchesSnapshots ;
34
+ use Symfony \Component \VarDumper \Test \VarDumperTestTrait ;
32
35
use Tests \Models \User ;
33
36
use Tests \Seeder \UserSeeder ;
34
37
35
38
abstract class TestCase extends \Orchestra \Testbench \TestCase
36
39
{
40
+ use MatchesSnapshots;
41
+ use PHPMock;
42
+ use VarDumperTestTrait;
43
+
37
44
protected function setUp (): void
38
45
{
39
46
parent ::setUp ();
@@ -54,7 +61,7 @@ protected function getPackageProviders($app)
54
61
/**
55
62
* {@inheritDoc}
56
63
*/
57
- protected function getEnvironmentSetUp ($ app ): void
64
+ protected function defineEnvironment ($ app ): void
58
65
{
59
66
config ()->set ('soar ' , require __DIR__ .'/../config/soar.php ' );
60
67
config ()->set ('soar.enabled ' , true );
You can’t perform that action at this time.
0 commit comments