I have a series of PHPUnit tests that will need to connect to a database. I would like to avoid hardcoding a specific database/username/password into each unit test. How can they share this information?
Right now I am setting these as key/value pairs in the $GLOBALS array in my PHPUnit bootstrap file. Should they be somewhere else?