package org.traccar.model; import static org.junit.Assert.assertEquals; import org.junit.Test; public class MiscFormatterTest { @Test public void testToString() throws Exception { Position position = new Position(); position.set("a", "1"); position.set("b", "2"); position.set("a", "3"); assertEquals("32", MiscFormatter.toXmlString(position.getAttributes())); } }