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 [email protected] http://blog.unhandled-exceptions.com http://twitter.com/sbohlen On Wed, Sep 8, 2010 at 8:06 AM, Tim Barcz <[email protected]> wrote: > Ben, > > I don't understand what you mean.. please explain and/or provide a > screenshot. > > Tim > > On Sep 8, 2010, at 2:14 AM, Benjamin <[email protected]> wrote: > > > Why is there no code coverage when using Rhino.Mocks 3.6 in VS 2008 > > even though the testrunconfig enabled the code coverage already for > > the target assemblies? > > > > -- > > You received this message because you are subscribed to the Google Groups > "Rhino.Mocks" group. > > To post to this group, send email to [email protected]. > > To unsubscribe from this group, send email to > [email protected]<rhinomocks%[email protected]> > . > > For more options, visit this group at > http://groups.google.com/group/rhinomocks?hl=en. > > > > -- > You received this message because you are subscribed to the Google Groups > "Rhino.Mocks" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]<rhinomocks%[email protected]> > . > For more options, visit this group at > http://groups.google.com/group/rhinomocks?hl=en. > > -- You received this message because you are subscribed to the Google Groups "Rhino.Mocks" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rhinomocks?hl=en.
