I have a Laravel 4 test class with a number of tests for which I want to seed my database before running the tests. Using the setup() function to reseed for each test takes far too long. However, when I try seeding in the static setupBeforeClass() function or in the constructor, I obviously can't use the $this->seed() method. I have a Laravel 4 test class with a number of