AbstractDaoTest.java 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /* ===================================================================
  2. * AbstractDaoTest.java
  3. *
  4. * Created Sep 17, 2004 12:00:44 PM
  5. *
  6. * Copyright (c) 2004 Matt Magoffin (spamsqr@msqr.us)
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License as
  10. * published by the Free Software Foundation; either version 2 of
  11. * the License, or (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  21. * 02111-1307 USA
  22. * ===================================================================
  23. * $Id: AbstractDaoTest.java 39 2009-05-06 03:30:47Z msqr $
  24. * ===================================================================
  25. */
  26. package magoffin.matt.ieat.dao;
  27. import magoffin.matt.ieat.AbstractSpringEnabledTransactionalTest;
  28. /**
  29. * Base class for DAO related unit tests.
  30. *
  31. * @author Matt Magoffin (spamsqr@msqr.us)
  32. * @version $Revision: 39 $ $Date: 2009-05-06 15:30:47 +1200 (Wed, 06 May 2009) $
  33. */
  34. public abstract class AbstractDaoTest extends AbstractSpringEnabledTransactionalTest {
  35. // TODO
  36. }