Trait that provides some basic syntax sugar for EasyMock.
Companion object that facilitates the importing of EasyMockSugar
members as
an alternative to mixing it in.
Companion object that facilitates the importing of EasyMockSugar
members as
an alternative to mixing it in. One use case is to import EasyMockSugar
members so you can use
them in the Scala interpreter.
Trait that provides some basic syntax sugar for EasyMock.
Using the EasyMock API directly, you create a mock with:
With this trait, you can shorten that to:
After creating mocks, you set expectations on them, using syntax like this:
If you wish to highlight which statements are setting expectations on the mock (versus which ones are actually using the mock), you can place them in an
expecting
clause, provided by this trait, like this:Using an
expecting
clause is optional, because it does nothing but visually indicate which statements are setting expectations on mocks. (Note: this trait also provides thelastCall
method, which just callsexpectLastCall
.)Once you've set expectations on the mock objects, you must invoke
replay
on the mocks to indicate you are done setting expectations, and will start using the mock. After using the mock, you must invokeverify
to check to make sure the mock was used in accordance with the expectations you set on it. Here's how that looks when you use the EasyMock API directly:This trait enables you to use the following, more declarative syntax instead:
The
whenExecuting
method will pass themockCollaborator
toreplay
, execute the passed function (your code that uses the mock), and callverify
, passing in themockCollaborator
. If you want to use multiple mocks, you can pass multiple mocks towhenExecuting
.To summarize, here's what a typical test using
EasyMockSugar
looks like:An alternative approach is to place your mock objects in a
MockObjects
holder object referenced from an implicitval
, then use the overloaded variant ofwhenExecuting
that takes an implicitMockObjects
parameter. Here's how that would look:Note: As of ScalaTest 1.3, this trait supports EasyMock 3, with no dependencies on EasyMock class extension.