First off, thank you Chris and Lasse for your responses. I appreciate your time.
After reading and re-reading your responses and my task at hand, I think I may be trying to force JUnit into a project that doesn't need it.
Right now, I have an application where the test case data is embedded in the code. I'm trying to move the test cases into a more felxible framework. I was thinking JUnit should be used. However, the more I think about it, these test cases need to provide data.
Doesn't JUnit just ensure that the code executes properly? The TestResult that one would get from running a JUnit test is either Pass or Fail, correct? So maybe I shouldn't be using JUnit at all?
Any other opinions would be greatly appreciated. I apoligize if my logic is difficult to follow. I'm still new to the world of unit testing.
Thanks again!