GeometryStart

This commit is contained in:
Bipin
2021-01-06 10:41:07 +01:00
parent 7e0b888974
commit d9a6e1eff0

View File

@@ -0,0 +1,22 @@
package com.a1.nextlocation;
import com.a1.nextlocation.json.GeometryDecoder;
import com.google.gson.JsonArray;
import org.junit.Test;
import static org.junit.Assert.assertEquals;
public class GeometryDecoderTest {
@Test
public void geometryDecoderTest(){
String encodedGeometryTest = "";
JsonArray expected = new JsonArray();
assertEquals(expected, GeometryDecoder.decodeGeometry(encodedGeometryTest, true));
}
}