View Javadoc
1   package org.example.customerdao.testsuites;
2   
3   import org.example.customerdao.CustomerDAOFastTests;
4   import org.example.customerdao.OrderDAOFastTests;
5   import org.example.customerdao.ProductDAOFastTests;
6   import org.example.customerdao.SupplierDAOFastTests;
7   import org.junit.runner.RunWith;
8   import org.junit.runners.Suite;
9   import org.junit.runners.Suite.SuiteClasses;
10  
11  @RunWith(Suite.class)
12  @SuiteClasses({ CustomerDAOFastTests.class, 
13      SupplierDAOFastTests.class,
14      ProductDAOFastTests.class,
15      OrderDAOFastTests.class})
16  public class AllFastTests
17  { }