querydsl/querydsl-sql/src/test/java/com/mysema/query/ConnectionsTest.java
2014-09-20 18:06:54 +03:00

17 lines
374 B
Java

package com.mysema.query;
import org.geolatte.geom.codec.Wkt;
import org.junit.Test;
import static org.junit.Assert.assertNotNull;
public class ConnectionsTest {
@Test
public void Valid_Wkt() {
for (String wkt : Connections.getSpatialData().values()) {
assertNotNull(Wkt.newDecoder(Wkt.Dialect.POSTGIS_EWKT_1).decode(wkt));
}
}
}