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 / TestDistinctOnUngrouped.java @ 46542

History | View | Annotate | Download (1 KB)

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

    
3
import org.gvsig.fmap.dal.store.jdbc2.AbstractTestDistinctOnUngrouped;
4
import org.gvsig.fmap.dal.store.jdbc2.AbstractTestUtils;
5

    
6
public class TestDistinctOnUngrouped extends AbstractTestDistinctOnUngrouped {
7
    
8
    public TestDistinctOnUngrouped(String testName) {
9
        super(testName);
10
    }
11

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

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

    
22
    @Override
23
    public void testAggregatesLast() throws Exception {
24
        super.testAggregatesLast();
25
    }
26
    
27
    @Override
28
    public void testAggregatesMin() throws Exception {
29
        super.testAggregatesMin();
30
    }
31
    
32
    @Override
33
    public void testAggregatesMax() throws Exception {
34
        super.testAggregatesMax();
35
    }
36
    
37
    @Override
38
    public void testAggregatesSum() throws Exception {
39
        super.testAggregatesSum();
40
    }
41
    
42
}