/src/test/java/com/google/ie/test/AllTests.java

http://thoughtsite.googlecode.com/ · Java · 25 lines · 13 code · 4 blank · 8 comment · 0 complexity · dcfdc5741512f06a7768a4a7ce39f492 MD5 · raw file

  1. // Copyright 2009 Google Inc. All Rights Reserved.
  2. /**
  3. *
  4. */
  5. package com.google.ie.test;
  6. import com.google.ie.business.dao.impl.DaoTests;
  7. import com.google.ie.business.domain.IdeaTest;
  8. import com.google.ie.business.service.impl.ServiceTests;
  9. import com.google.ie.common.CommonTests;
  10. import org.junit.runner.RunWith;
  11. import org.junit.runners.Suite;
  12. import org.junit.runners.Suite.SuiteClasses;
  13. /**
  14. * @author Akhil
  15. *
  16. */
  17. @RunWith(Suite.class)
  18. @SuiteClasses( { DaoTests.class, ServiceTests.class, CommonTests.class, IdeaTest.class,
  19. RegularExpressionTest.class })
  20. public class AllTests {
  21. }