I'm using PHPUnit (3.6.7) to test and provide code coverage reports on my application, everything is set-up and working as expected.
I have complete coverage for all of the code except for my interfaces, even though I have tests that for classes that implement the interfaces. The report just states that the interface was not executed
Is there a way to cover the interfaces? Or is it a case of telling PHPUnit to ignore them for code coverage?
Thanks, Paul