Laravel - Getting Started - Parallel Testing Hooks
Occasionally, you may need to prepare certain resources used by your application's tests so they may be safely used by multiple test processes.
Using the ParallelTesting
facade, you may specify code to be executed on the setUp
and tearDown
of a process or test case. The given closures receive the $token
and $testCase
variables that contain the process token and the current test case, respectively: