Tile decoders refactoring

This commit is contained in:
Emux
2019-10-01 18:41:13 +03:00
parent 1294ff9fea
commit c20922b5f5
11 changed files with 19 additions and 19 deletions

View File

@@ -24,11 +24,11 @@ import org.oscim.tiling.QueryResult;
import static org.junit.Assert.assertEquals;
public class MvtTileDecoderTest {
public class TileDecoderTest {
@Test
public void tileDecodingTest() throws Exception {
MvtTileDecoder decoder = new MvtTileDecoder();
TileDecoder decoder = new TileDecoder();
Tile tile = new Tile(0, 0, (byte) 0);
ITileDataSink sink = new ITileDataSink() {
@Override