Laravels neat testing helpers in workbench?
Looking at the laravel testing documentation , you get an idea of all the cool helpers I'd love to use in workbench. Sadly I'm unable to do so. Illuminate\Foundation\Testing\TestCase seems to be unavailable when running my tests from the package directory and therefore i can't extend it. <?php namespace Acme\Foo; class TestCase extends \Illuminate\Foundation\Testing\TestCase { /** * Creates the application. * * @return \Symfony\Component\HttpKernel\HttpKernelInterface */ public function createApplication() { $unitTesting = true; $testEnvironment = 'testing'; return require __DIR__.'/../../../.