When I explain unit testing I like to describe them as a list of phases:
- Test Setup : Define and Create all the Data and Objects you need for the tests
- Expectations : Say what methods and parameters you expect to be executed during the test
- Test : The actual behavior/method call you want to test
- Assertions : Statements that make sure the outcome of the test were successful
- Test Tear down : Destroy any side effects that occurred during the test
jUnit is a Unit Testing Framework and provides all but the Expectations phase of testing. Alternatives in the Java space include:
- TestNG
- jtest
- jBehave (sort of)
- jDave (sort of)
Other Language equivalents include:
- PHP - phpUnit
- Ruby - Test::Unit
- Flash - FlexUnit
The concept of mocking is what added the new phase of Expectations, and since jUnit saw most of it's major development prior to the mocking movement, those features were not incorporated into the core, and a set of tools to fill that gap in the java space have opened up. Those libraries include
All of these libraries are compliments to any of the above Unit Testing frameworks I listed, including jUnit. They add the ability to define mock objects. Mock objects get "expectations" assigned to them, which are then asserted in the Assertions phase. Each Mock library accomplishes this slightly differently, but the major models are
- Record Replay - EasyMock
- Expectations - jMock, jMockIt
I personally am a fan of the Expectations approach, which is more declarative, and less error prone, because it requires less methods to be called by the implementor, but that is a stylistic preference not a technical one.
Other Languages (since they came to the unit testing world later than java) don't have this seperation for the most part. The Unit Testing Library and Mock Library are one and the same. This is the case in phpunit, rspec. I imagine jUnit will not be incorporating this natively any time soon, since there is already such a rich set of alternative mock libraries available.