blob: 94241f95c4a1575210879bbce949d53cc74a9d50 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
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");
position.set("c", 3.555);
assertEquals(position.getOther(), "<info><a>3</a><b>2</b><c>3.56</c></info>");
}
}
|