Thanks. I'm confused how to write unit testcases for class extending tiles tag. Is only JUnit sufficient ?
On Tue, Sep 1, 2009 at 1:11 PM, Antonio Petrelli <[email protected] > wrote: > 2009/9/1 Roshni Basu <[email protected]>: > > Actually I want to write unit testcases for classes extending Tiles > classes. > > So will these apis help me ? > > The not "*Test" classes might help (they are almost stub classes), but > most of them are specific to the tested class. The pattern is: > NameOfTheClass > NameOfTheClassTest > or > TestNameOfTheClass > > In fact, with JUnit 4.x you don't need to extend TestCase at all, by > using annotations. > I suggest you to take a look at the JUnit website. > > Ciao > Antonio >
