Statistics
| Revision:

root / tags / v1_1_Build_1004 / libraries / libGDBMS / src / test / java / com / hardcode / gdbms / DataSourceTestCase.java @ 12319

History | View | Annotate | Download (337 Bytes)

1 3199 fjp
package com.hardcode.gdbms;
2
3
import com.hardcode.gdbms.engine.data.DataSourceFactory;
4
import com.hardcode.gdbms.engine.data.SetUp;
5
6
import junit.framework.TestCase;
7
8
/**
9
 *
10
 */
11
public class DataSourceTestCase extends TestCase{
12
13
        protected DataSourceFactory ds;
14
        protected void setUp() throws Exception {
15
            ds = SetUp.setUp();
16
        }
17
18
19
}