Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.plugin / org.gvsig.h2spatial / org.gvsig.h2spatial.h2gis132 / org.gvsig.h2spatial.h2gis132.provider / src / test / java / org / gvsig / fmap / dal / store / h2 / operations / sql / TestCount.java @ 46102

History | View | Annotate | Download (676 Bytes)

1
package org.gvsig.fmap.dal.store.h2.operations.sql;
2

    
3
import org.gvsig.fmap.dal.store.h2.TestUtilsH2Spatial;
4
import org.gvsig.fmap.dal.store.jdbc2.AbstractTestUtils;
5
import org.gvsig.fmap.dal.store.jdbc2.operations.sql.AbstractTestCount;
6

    
7
public class TestCount extends AbstractTestCount {
8

    
9
    public TestCount(String testName) {
10
        super(testName);
11
    }
12

    
13
    @Override
14
    protected AbstractTestUtils createUtils() {
15
        return new TestUtilsH2Spatial();
16
    }
17

    
18
    @Override
19
    public void testCount() throws Exception {
20
        super.testCount();
21
    }
22

    
23
    @Override
24
    public void testSimpleGroup() throws Exception {
25
        super.testSimpleGroup();
26
    }
27

    
28
}