factor/library/test/random.factor

15 lines
258 B
Factor
Raw Normal View History

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
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?
[ "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