diff --git a/app/Console/Commands/PrepareTestCase.php b/app/Console/Commands/PrepareTestCase.php new file mode 100644 index 0000000..62a49fd --- /dev/null +++ b/app/Console/Commands/PrepareTestCase.php @@ -0,0 +1,46 @@ +call('migrate:refresh'); + $this->call('db:seed'); + + $this->initializeGit(); + $this->createFederations(); + $this->createCategoriesAndGroups(); + $this->makeEdu2Edugain(); + + } +}