/**
* {@inheritDoc}
*/
protected void checkAndStoreTestClass(WjrStore store, Class<?> clazz) {
WjrClassItem classItem = null;
if (isJUnit3TargetClass(clazz)) {
Method[] methods = clazz.getMethods();
for (Method m : methods) {
if (isJUnit3TargetMethod(m)) {
if (classItem == null) {
classItem = new WjrClassItem(clazz.getName());
store.addClassItem(classItem);
}
store.addMethodItem(new WjrMethodItem(clazz.getName(), m.getName()));
}
}