forked from xerial/sqlite-jdbc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAllTests.java
More file actions
33 lines (31 loc) · 805 Bytes
/
AllTests.java
File metadata and controls
33 lines (31 loc) · 805 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package org.sqlite;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.sqlite.util.OSInfoTest;
@RunWith(Suite.class)
@Suite.SuiteClasses({
BackupTest.class,
ConnectionTest.class,
DBMetaDataTest.class,
ErrorMessageTest.class,
ExtendedCommandTest.class,
ExtensionTest.class,
FetchSizeTest.class,
InsertQueryTest.class,
JDBCTest.class,
OSInfoTest.class,
PrepStmtTest.class,
QueryTest.class,
ReadUncommittedTest.class,
RSMetaDataTest.class,
SavepointTest.class,
SQLiteDataSourceTest.class,
SQLiteConnectionPoolDataSourceTest.class,
SQLiteJDBCLoaderTest.class,
StatementTest.class,
TransactionTest.class,
UDFTest.class
})
public class AllTests {
// runs all Tests
}