HelperTestCase is a class inside Test::Rails, so you need to either:
include Test::Rails class ApplicationHelperTest < HelperTestCase
or
class ApplicationHelperTest < Test::Rails::HelperTestCase
I usually use the second form.
BTW, excellent way to ask a question (hint to others: paste your code!)