AllTests.java 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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 30 2009-05-04 01:53:34Z msqr $
  24. * ===================================================================
  25. */
  26. package magoffin.matt.ieat.biz.test;
  27. import junit.framework.Test;
  28. import junit.framework.TestSuite;
  29. /**
  30. * Test suite for all Biz tests.
  31. *
  32. * @author Matt Magoffin (spamsqr@msqr.us)
  33. * @version $Revision: 30 $ $Date: 2009-05-04 13:53:34 +1200 (Mon, 04 May 2009) $
  34. */
  35. public class AllTests {
  36. /**
  37. * Test suite.
  38. *
  39. * @return Test
  40. */
  41. public static Test suite() {
  42. TestSuite suite = new TestSuite("Test for magoffin.matt.ieat.dao");
  43. //$JUnit-BEGIN$
  44. suite.addTestSuite(RecipeSearchBizTest.class);
  45. suite.addTestSuite(RecipeSearchIndexBizTest.class);
  46. suite.addTestSuite(UserBizTest.class);
  47. //$JUnit-END$
  48. return suite;
  49. }
  50. }