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

History | View | Annotate | Download (657 Bytes)

1 45472 jjdelcerro
package org.gvsig.fmap.dal.store.h2;
2
3 46102 jjdelcerro
import org.gvsig.fmap.dal.store.jdbc2.AbstractTestComputedAttributes;
4
import org.gvsig.fmap.dal.store.jdbc2.AbstractTestUtils;
5 45472 jjdelcerro
6 46102 jjdelcerro
public class TestComputedAttributes extends AbstractTestComputedAttributes {
7 45472 jjdelcerro
8 46050 omartinez
    public TestComputedAttributes(String testName) {
9 45472 jjdelcerro
        super(testName);
10
    }
11 46102 jjdelcerro
12 45472 jjdelcerro
    @Override
13 46102 jjdelcerro
    protected AbstractTestUtils createUtils() {
14
        return new TestUtilsH2Spatial();
15 45472 jjdelcerro
    }
16
17 46102 jjdelcerro
    @Override
18 46050 omartinez
    public void testComputed1() throws Exception {
19 46102 jjdelcerro
        super.testComputed1();
20 45472 jjdelcerro
    }
21
22 46102 jjdelcerro
    @Override
23
    public void testComputed2() throws Exception {
24
        super.testComputed2();
25 45472 jjdelcerro
    }
26 46050 omartinez
27 45472 jjdelcerro
}