[Gd-chatter] r10804 - trunk/fundev/sources/dylan/tests
cgay at gwydiondylan.org
cgay at gwydiondylan.org
Sun Jun 18 00:06:00 CEST 2006
Author: cgay
Date: Sun Jun 18 00:05:58 2006
New Revision: 10804
Modified:
trunk/fundev/sources/dylan/tests/collections.dylan
Log:
bug: 7315
Test collections with an even size and odd size > 1.
Modified: trunk/fundev/sources/dylan/tests/collections.dylan
==============================================================================
--- trunk/fundev/sources/dylan/tests/collections.dylan (original)
+++ trunk/fundev/sources/dylan/tests/collections.dylan Sun Jun 18 00:05:58 2006
@@ -23,7 +23,8 @@
if (instantiable?)
test-collection-of-size(format-to-string("Empty %s", name), class, 0);
test-collection-of-size(format-to-string("One item %s", name), class, 1);
- test-collection-of-size(format-to-string("Multiple item %s", name), class, 5);
+ test-collection-of-size(format-to-string("Even size %s", name), class, 4);
+ test-collection-of-size(format-to-string("Odd size %s", name), class, 5);
end
end method test-collection-class;
More information about the chatter
mailing list