mirror of
https://github.com/querydsl/querydsl.git
synced 2026-06-13 21:01:01 +08:00
18 lines
378 B
Java
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));
|
|
}
|
|
}
|
|
|
|
}
|