The answer may be simple just 'cause I'm not finding anything with basic google hunting.
Using PhpStorm 7.0 with PHPUnit for testing in each subcategory of Function, Unit, and Integration, I have a alternative configuration file defined, custom working directory defined, and environment variables.
When I create a new testing class within a defined directory (for example, I add a class in wamp/integration/Classes/, where my integration directory is defined as /wamp/tests/integration), how do I make that new class automatically adopt the environment variables and alternative config file from the parent configuration of the Integration Tests?
Use case: While writing these tests I'll run just that test class individually (instead of all Integration tests), but it only runs properly after I've manually entered the environment variables, alt config file and the custom working directory- which is stupidly time consuming.
There has got to be a quick/easy way to do this automatically that I'm missing.