aboutsummaryrefslogtreecommitdiffstats
path: root/tests/src/cgeo/geocaching/test/DistanceParserTest.java
blob: 34bef7b5986cdecccf0af60116473f870ea004d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package cgeo.geocaching.test;

import cgeo.geocaching.geopoint.DistanceParser;

import android.test.AndroidTestCase;

import junit.framework.Assert;

@SuppressWarnings("static-method")
public class DistanceParserTest extends AndroidTestCase {

	static private final double MM = 1e-6;  // 1mm, in kilometers

	public void testFormats() {
        Assert.assertEquals(1.2, DistanceParser.parseDistance("1200 m", true), MM);
        Assert.assertEquals(1.2, DistanceParser.parseDistance("1.2 km", true), MM);
        Assert.assertEquals(0.36576, DistanceParser.parseDistance("1200 ft", true), MM);
        Assert.assertEquals(1.09728, DistanceParser.parseDistance("1200 yd", true), MM);
        Assert.assertEquals(1.9312128, DistanceParser.parseDistance("1.2 mi", true), MM);
	}

	public void testImplicit() {
        Assert.assertEquals(1.2, DistanceParser.parseDistance("1200", true), MM);
        Assert.assertEquals(0.36576, DistanceParser.parseDistance("1200", false), MM);
	}

	public void testComma() {
        Assert.assertEquals(1.2, DistanceParser.parseDistance("1,2km", true), MM);
	}

	public void testCase() {
        Assert.assertEquals(0.36576, DistanceParser.parseDistance("1200 FT", true), MM);
	}

}