I found this idea interesting, so I tried implementing a base test class, as follows:
import net.sf.hibernate.Session;
import org.springframework.orm.hibernate.HibernateTransactionManager;...
Type: Posts; User: teneighty; Keyword(s):
I found this idea interesting, so I tried implementing a base test class, as follows:
import net.sf.hibernate.Session;
import org.springframework.orm.hibernate.HibernateTransactionManager;...
Does anyone use an in-memory HSQLDB database to test their business layer (facades, business delegates, etc)?
Right now I test my Hibernate DAOs and business delegates, running Junit via Ant. I...