Is there a way, a method, to be able to effectively run unit tests (phpunit) on both linux and windows?
I need to do this because some parts of the system is only available under linux, but i do want to be able to run certain parts of the test suite in my IDE, which is netbeans by the way.
The problems i run into have to do with paths most of the time. To complicate things more i also intend to run the tests from within phing.
But the thing i haven't adressed yet is the ability to tailor different testsuites for different platforms. Is this even possible?
Tests are basically living inside the test directory and source is within src. The includepaths are handled by an included file. Would it be possible to use an autoloader to handle different directory structure?