Statistics
| Revision:

root / trunk / org.gvsig.postgresql / org.gvsig.postgresql.provider / src / test / java / org / gvsig / postgresql / dal / TestComputedAttributes.java @ 935

History | View | Annotate | Download (655 Bytes)

1
package org.gvsig.postgresql.dal;
2

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

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

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

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

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