From 0a8d47bec2a232aad6353d34a101eb82c9d4f7ae Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Tue, 20 Dec 2016 17:22:21 +1300 Subject: Improved network location providers --- test/org/traccar/location/CellInfoTest.java | 36 ----------------------------- 1 file changed, 36 deletions(-) delete mode 100644 test/org/traccar/location/CellInfoTest.java (limited to 'test/org/traccar/location/CellInfoTest.java') diff --git a/test/org/traccar/location/CellInfoTest.java b/test/org/traccar/location/CellInfoTest.java deleted file mode 100644 index e78ce51fb..000000000 --- a/test/org/traccar/location/CellInfoTest.java +++ /dev/null @@ -1,36 +0,0 @@ -package org.traccar.location; - -import org.junit.Assert; -import org.junit.Test; - -public class CellInfoTest { - - @Test - public void testToString() { - - CellInfo info = new CellInfo(); - info.addCell(0, 0, 1000, 2000); - info.addCell(400, 1, 3000, 4000); - - Assert.assertEquals("[{\"lac\":1000,\"cid\":2000},{\"mcc\":400,\"mnc\":1,\"lac\":3000,\"cid\":4000}]", info.toString()); - - } - - @Test - public void testFromString() { - - CellInfo info = CellInfo.fromString("[{\"lac\":1000,\"cid\":2000}]"); - - Assert.assertEquals(1, info.getCells().size()); - - CellInfo.Cell cell = info.getCells().get(0); - - Assert.assertEquals(0, cell.getMcc()); - Assert.assertEquals(0, cell.getMnc()); - Assert.assertEquals(1000, cell.getLac()); - Assert.assertEquals(2000, cell.getCid()); - Assert.assertEquals(0, cell.getSignal()); - - } - -} -- cgit v1.2.3