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 / TestWhereWithComputedField.java @ 46517

History | View | Annotate | Download (640 Bytes)

1 46170 omartinez
package org.gvsig.fmap.dal.store.h2.operations;
2 45472 jjdelcerro
3 46170 omartinez
import org.gvsig.fmap.dal.store.h2.*;
4 46102 jjdelcerro
import org.gvsig.fmap.dal.store.jdbc2.AbstractTestUtils;
5 46170 omartinez
import org.gvsig.fmap.dal.store.jdbc2.AbstractTestWhereWithComputedField;
6 45472 jjdelcerro
7 46170 omartinez
public class TestWhereWithComputedField extends AbstractTestWhereWithComputedField {
8 45472 jjdelcerro
9 46170 omartinez
    public TestWhereWithComputedField(String testName) {
10 45472 jjdelcerro
        super(testName);
11
    }
12 46102 jjdelcerro
13 45472 jjdelcerro
    @Override
14 46102 jjdelcerro
    protected AbstractTestUtils createUtils() {
15
        return new TestUtilsH2Spatial();
16 45472 jjdelcerro
    }
17
18 46102 jjdelcerro
    @Override
19 46170 omartinez
    public void testWhereWithComputedField() throws Exception {
20
        super.testWhereWithComputedField();
21 45472 jjdelcerro
    }
22
23
}