/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
- // Copyright 2009 Google Inc. All Rights Reserved.
- /**
- *
- */
- package com.google.ie.test;
-
- import com.google.ie.business.dao.impl.DaoTests;
- import com.google.ie.business.domain.IdeaTest;
- import com.google.ie.business.service.impl.ServiceTests;
- import com.google.ie.common.CommonTests;
-
- import org.junit.runner.RunWith;
- import org.junit.runners.Suite;
- import org.junit.runners.Suite.SuiteClasses;
-
- /**
- * @author Akhil
- *
- */
- @RunWith(Suite.class)
- @SuiteClasses( { DaoTests.class, ServiceTests.class, CommonTests.class, IdeaTest.class,
- RegularExpressionTest.class })
- public class AllTests {
-
- }