From 50c28124a4cb064efe9556406c9e4a9d9c14e118 Mon Sep 17 00:00:00 2001 From: Bananeweizen Date: Fri, 13 Dec 2013 19:48:00 +0100 Subject: calendar addon: recognize one more variation of the event time --- tests/src/cgeo/geocaching/GeocacheTest.java | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tests') diff --git a/tests/src/cgeo/geocaching/GeocacheTest.java b/tests/src/cgeo/geocaching/GeocacheTest.java index 5d9a31c..cdca9b7 100644 --- a/tests/src/cgeo/geocaching/GeocacheTest.java +++ b/tests/src/cgeo/geocaching/GeocacheTest.java @@ -245,6 +245,8 @@ public class GeocacheTest extends CGeoTestCase { assertTime("text 14:20.", 14, 20); assertTime("14:20", 14, 20); assertTime("Uhrzeit: 17-20 " + timeHours + "", 17, 00); + assertTime("von 11 bis 13 " + timeHours, 11, 00); + assertTime("from 11 to 13 " + timeHours, 11, 00); } private static void assertTime(final String description, final int hours, final int minutes) { -- cgit v1.1