10 lines
334 B
Factor
10 lines
334 B
Factor
! Copyright (C) 2010 Dmitry Shubin.
|
|
! See http://factorcode.org/license.txt for BSD license.
|
|
USING: tools.test boyer-moore ;
|
|
|
|
{ 0 } [ "qwerty" "" search ] unit-test
|
|
{ 0 } [ "" "" search ] unit-test
|
|
{ f } [ "qw" "qwerty" search ] unit-test
|
|
{ 3 } [ "qwerty" "r" search ] unit-test
|
|
{ 8 } [ "qwerasdfqwer" 2 "qwe" search-from ] unit-test
|