slavik has asked for the wisdom of the Perl Monks concerning the following question:

I set up a class hierarchy using Test::Class and am using Test::Class::Load to load up all of these modules. I would like to be able to output test counts (pass/fail/total) per test module. I have gone through Test::Class documentation, but could not find anything.

One thing to note is that a lost of my test methods have no_plan since it allows a child class to add more tests.

Replies are listed 'Best First'.
Re: Reporting test counts with Test::Class (prove)
by Anonymous Monk on Oct 18, 2013 at 00:42 UTC

    The cheap and easy way to accomplish this effect
    prove classone.t
    prove classtwo.t
    prove classthree.t

    :) I know its not very satisfying :D

      In the end, I ended up using the shutdown method and tallying up the number of expected tests and number of tests that passed.