blob: cef8ffdb74f2a1b3a682238252bbc6d92300eef4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;
import data.io.ldap.LDAPDataReaderTest;
import data.io.ldap.LDAPDataWriterTest;
import data.io.sql.SQLRelDataReaderTest;
@RunWith(Suite.class)
@SuiteClasses({
// SSSync_Connectors
LDAPDataReaderTest.class, LDAPDataWriterTest.class,
SQLRelDataReaderTest.class,
})
public class AllClientServerTests {
}
|