I notice often times I want to load fixtures into test database - without actually running the test case, I want to test it on the browser myself.
What I currently do now is just have an empty test case and run that test case everytime with "phpunit --filter testEmptyTestCase" so that my fixtures are loaded in the DB.
Is there a better way to do this? If I were to implement a command line command to do this, where should I start, advice me, thanks!!