Do you mean "code coverage for the Rhino.Mocks codebase" or do you mean "code coverage for your own code-under-test when writing tests with Rhino.Mocks" ? And by "no code coverage" do you mean you're having problems getting the VS2008 Code coverage report or you get the report but it shows zero coverage?
One thing to pay attention to is that you will (typically) see very low (if even non-zero) code-coverage for classes that you are MOCKING because (of course) those classes aren't actually in play during your tests (e.g., if they are mocked, their code isn't actually being tested and so their coverage will typically be zero).
But the classes not mocked but interacting with the mocks should show non-zero coverage numbers. Rhino.Mocks shouldn't in any way interfere with the VS2008 code coverage tools generating their reports. Can you try to write a test in a completely new project/solution to ensure that you are able to get a code coverage report out of VS2008 when Rhino.Mocks isn't involved in the test-run?
Steve Bohlen
sbo...@gmail.comhttp://blog.unhandled-exceptions.comhttp://twitter.com/sbohlen