AllTests.java 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /* ===================================================================
  2. * AllTests.java
  3. *
  4. * Created Sep 17, 2004 1:14:12 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: AllTests.java 4 2009-05-01 03:27:53Z msqr $
  24. * ===================================================================
  25. */
  26. package magoffin.matt.ieat.dao;
  27. import junit.framework.Test;
  28. import junit.framework.TestSuite;
  29. /**
  30. * Test suite for all DAO tests.
  31. *
  32. * @author Matt Magoffin (spamsqr@msqr.us)
  33. * @version $Revision: 4 $ $Date: 2009-05-01 15:27:53 +1200 (Fri, 01 May 2009) $
  34. */
  35. public class AllTests {
  36. /**
  37. * @return test
  38. */
  39. public static Test suite() {
  40. TestSuite suite = new TestSuite("Test for magoffin.matt.ieat.dao");
  41. //$JUnit-BEGIN$
  42. suite.addTestSuite(MealDaoTest.class);
  43. suite.addTestSuite(RecipeDaoTest.class);
  44. suite.addTestSuite(UserDaoTest.class);
  45. //$JUnit-END$
  46. return suite;
  47. }
  48. }