/src/test/java/com/google/ie/common/CommonTests.java
http://thoughtsite.googlecode.com/ · Java · 27 lines · 13 code · 4 blank · 10 comment · 0 complexity · 211d9e8efc97073323096b0c0ac57952 MD5 · raw file
- // Copyright 2009 Google Inc. All Rights Reserved.
- /**
- *
- */
- package com.google.ie.common;
-
- import com.google.ie.common.cache.CacheHelperTest;
- import com.google.ie.common.util.GsonUtilityTest;
- import com.google.ie.core.common.audit.AuditManagerTest;
- import com.google.ie.core.common.email.EmailManagerTest;
-
- import org.junit.runner.RunWith;
- import org.junit.runners.Suite;
- import org.junit.runners.Suite.SuiteClasses;
-
- /**
- * Test suite for common package
- *
- * @author Akhil
- *
- */
- @RunWith(Suite.class)
- @SuiteClasses( { CacheHelperTest.class, GsonUtilityTest.class, AuditManagerTest.class,
- EmailManagerTest.class })
- public class CommonTests {
-
- }