querydsl/querydsl-sql/src/test/java/com/mysema/query/ConnectionsTest.java
Timo Westkämper f751ff1af3 Add tests #631
2014-02-17 00:07:40 +02:00

18 lines
378 B
Java

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