2005-03-28 23:45:13 -05:00
|
|
|
IN: temporary
|
2004-07-16 02:26:21 -04:00
|
|
|
USE: kernel
|
|
|
|
USE: lists
|
2004-08-26 22:21:17 -04:00
|
|
|
USE: math
|
2004-07-16 02:26:21 -04:00
|
|
|
USE: namespaces
|
|
|
|
USE: random
|
|
|
|
USE: test
|
2005-05-09 23:27:46 -04:00
|
|
|
USE: errors
|
2004-07-16 02:26:21 -04:00
|
|
|
|
2005-10-08 01:15:14 -04:00
|
|
|
: check-random-int ( max -- )
|
|
|
|
dup random-int 0 rot between?
|
2005-05-09 23:27:46 -04:00
|
|
|
[ "Assertion failed" throw ] unless ;
|
2004-07-16 02:26:21 -04:00
|
|
|
|
2005-10-08 01:15:14 -04:00
|
|
|
[ ] [ 100 [ 674 check-random-int ] times ] unit-test
|