Merge branch 'master' of git://factorcode.org/git/factor
[factor/jcg.git] / extra / wordtimer / wordtimer-tests.factor
blob47287179ce648f7c1d4fed9592cb3922f3ec7d27
1 USING: tools.test wordtimer math kernel tools.annotations prettyprint ;
2 IN: wordtimer.tests
4 : testfn ( a b c d -- a+b c+d )
5   + [ + ] dip ;
6     
7 [ 3 7 ]
8 [ reset-word-timer
9   \ testfn [ reset ] [ add-timer ] bi
10   1 2 3 4 testfn ] unit-test