/src/test/java/com/google/ie/business/dao/impl/DaoTests.java
http://thoughtsite.googlecode.com/ · Java · 24 lines · 11 code · 3 blank · 10 comment · 0 complexity · 81b90d2bd8b1ce21de3a43e962421b25 MD5 · raw file
- // Copyright 2009 Google Inc. All Rights Reserved.
- /**
- *
- */
- package com.google.ie.business.dao.impl;
-
- import org.junit.runner.RunWith;
- import org.junit.runners.Suite;
- import org.junit.runners.Suite.SuiteClasses;
-
- /**
- * Test suite for data access classes
- *
- * @author Akhil
- *
- */
- @RunWith(Suite.class)
- @SuiteClasses( { AuditDaoImplTest.class, EntityIndexDaoImplTest.class,
- IdeaCategoryDaoImplTest.class, IdeaDaoImplTest.class, TagDaoImplTest.class,
- UserDaoImplTest.class, VoteDaoImplTest.class, ShardedCounterDaoImplTest.class,
- CommentDaoImplTest.class, ProjectDaoImplTest.class, AdminRequestDaoImplTest.class })
- public class DaoTests {
-
- }