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 / PerformChangesUpdateStructure.java @ 46102

History | View | Annotate | Download (951 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.AbstractTestPerformChangesUpdateStructure;
6

    
7
public class PerformChangesUpdateStructure extends AbstractTestPerformChangesUpdateStructure {
8

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

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

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

    
23
    public void testChangePk1() throws Exception {
24
        super.testChangePk1();
25
    }
26

    
27
    public void testChangePk2() throws Exception {
28
        super.testChangePk2();
29
    }
30

    
31
    public void testChangePk3() throws Exception {
32
        super.testChangePk3();
33
    }
34
}