On Fri, Aug 22, 2008 at 10:55 AM, Kevin Brown <[EMAIL PROTECTED]> wrote: > The fixture had utility methods for generating the mocks and adding them to > a control. The tests should only ever have to call fixture.replay() once, > and all their mocks should be generated using fixture.mock().
Ah, so test cases would either inherit from EasyMockTestCase or include a fixture, but not both. If they included the fixture, they'd inherit from TestCase (or not inherit at all, just use the @Test annotation.) Want me to implement that?

