I have Eclipse Keplar and pdt is installed.
I want to set the path to the bootstrap file so I navigate to:
Window -> Preferences -> PHP Tools -> PHPUnit
There is the option to enter your Bootstrap file.
I put \%p\tests\bootstrap.php and run my tests and they fail saying could not find such and such a class. This happens because the boostrap.php file is not being included. If I set the bootstrap path to \ProjectName\tests\bootstrap.php, then it works. Eclipse finds and includes the bootstrap file.
This isn't a good solution because I have several projects in my workspace and I would have to change this value each time I want to run another projects unit tests.
What am I doing wrong? What am I missing.
Thank you