views:

76

answers:

1

I'd like to know if there is something similar to junit-addons DirectorySuiteBuilder (documentation) that works with jUnit 4. Simply stated, I want to load every file name *Test.java in a directory and build a suite out of them.

I realize that I can build a suite that runs every test in a directory using ant, but I would prefer to not go that route so that I can run the tests with eclipse's native jUnit plugin.

A: 

Sure enough, al nik. I don't know why I didn't think of that.

Will