-
Sorry, my fault. I mixed up closed and opened.
2008-12-21 11:12:48 UTC by dmitter
-
The current implementation of Interval#includesUpperLimit and Interval#includesLowerLimit is broken. Both methods return true for a closed interval although they should not (see attached test case). The reason is that the not operator is missing in these methods. So I propose that the implementation of these methods gets changed as follows:
public boolean includesLowerLimit() {...
2008-12-21 10:59:41 UTC by dmitter
-
The test TimePointTest.testFromString fails on my computer.
The string date "2004-Mar-29 10:44:58 PM" can't be parsed with French locale, which is the locale by default on my computer.
It should be possible to force the locale to be used, i.e. something like:
TimePoint.parseGMTFrom(source, pattern, Locale.ENGLISH)
2008-11-22 13:21:01 UTC by atao2
-
The unit below fails with a nullpointer exception. The equals method does not account for open-ended intervals:
import junit.framework.TestCase;
import com.domainlanguage.time.CalendarDate;
import com.domainlanguage.time.CalendarInterval;
public class CalendarIntervalTest extends TestCase {
public void testEquality() {
CalendarInterval i1 =...
2008-04-05 03:54:02 UTC by nobody
-
btbuxton committed revision 436 to the Time & Money Library SVN repository, changing 142 files.
2008-04-05 01:47:15 UTC by btbuxton
-
btbuxton committed revision 435 to the Time & Money Library SVN repository, changing 4 files.
2008-04-05 01:46:03 UTC by btbuxton
-
btbuxton committed revision 434 to the Time & Money Library SVN repository, changing 1 files.
2008-04-05 01:45:06 UTC by btbuxton
-
ericevans committed revision 433 to the Time & Money Library SVN repository, changing 1 files.
2008-03-03 06:37:10 UTC by ericevans
-
ericevans committed revision 432 to the Time & Money Library SVN repository, changing 1 files.
2008-03-03 05:38:29 UTC by ericevans
-
ericevans committed revision 431 to the Time & Money Library SVN repository, changing 3 files.
2008-03-03 05:36:04 UTC by ericevans