diff options
author | Abyss777 <abyss@fox5.ru> | 2017-06-16 14:03:08 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2017-06-16 14:05:26 +0500 |
commit | 2149abd164b56c028072ef5f6ea8cdd11a905985 (patch) | |
tree | d773cae3f1712a39011076393f331af1eff36733 /test/org/traccar/ProtocolTest.java | |
parent | fe4ea97dabc55c4585d8b32bd4dae32cd255add3 (diff) | |
download | trackermap-server-2149abd164b56c028072ef5f6ea8cdd11a905985.tar.gz trackermap-server-2149abd164b56c028072ef5f6ea8cdd11a905985.tar.bz2 trackermap-server-2149abd164b56c028072ef5f6ea8cdd11a905985.zip |
- Test 'archive' attribute for boolean
- Add 'archive' attribute for wialon and granit
- Reverted check satellites in wondex
Diffstat (limited to 'test/org/traccar/ProtocolTest.java')
-rw-r--r-- | test/org/traccar/ProtocolTest.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/org/traccar/ProtocolTest.java b/test/org/traccar/ProtocolTest.java index eaecfab0b..3b801c6eb 100644 --- a/test/org/traccar/ProtocolTest.java +++ b/test/org/traccar/ProtocolTest.java @@ -241,6 +241,10 @@ public class ProtocolTest extends BaseTest { Assert.assertTrue(attributes.get(Position.KEY_MOTION) instanceof Boolean); } + if (attributes.containsKey(Position.KEY_ARCHIVE)) { + Assert.assertTrue(attributes.get(Position.KEY_ARCHIVE) instanceof Boolean); + } + if (position.getNetwork() != null && position.getNetwork().getCellTowers() != null) { for (CellTower cellTower : position.getNetwork().getCellTowers()) { checkInteger(cellTower.getMobileCountryCode(), 0, 999); |