Tagged Questions

0
votes
2answers
34 views

Easymock partially mocking (EasyMock ClassExtension), good or bad?

I have written quite a few Mock objects using EasyMock. However, often i find writing partial mocks time consuming, and it does not feel 'right'. I'd say its a design fault as my …
1
vote
5answers
108 views

Unit Test - Check a method call with an object that doesn’t override equals

Hi All, This is a general question on how to unit-test a Java Class using mock objects. I can summarize my problem with this example. Let's say I've an Interface called MyInterfac …
4
votes
5answers
93 views

Are mock frameworks and high test coverage important?

Mock frameworks, e.g. EasyMock, make it easier to plugin dummy dependencies. Having said that, using them for ensuring how different methods on particular components are called (an …
1
vote
1answer
169 views

easymock - matcher and multiple calls

Below is a test I have knocked up that uses its own matcher. I know in this case I could use a standard matcher but in my real code I need a more complicated one. The test passes …
1
vote
3answers
121 views

verify object type with easymock

hello guys.i've just come into the world of easymock.i'll like to ask if easymock only does mock object for interfaces? So in my effort to understand i wrote a class to generate u …
4
votes
4answers
228 views

Is it possible to create a mock object that implements multiple interfaces with EasyMock?

Is it possible to create a mock object that implements several interfaces with EasyMock? For example, interface Foo and interface Closeable? In Rhino Mocks you can provide multip …
2
votes
3answers
222 views

Mocking a concrete class using easymock

Is it possible? How do I do it?
1
vote
1answer
270 views

Using easymock, repeated void method call

I am new to easymock. I am trying to mock a service where one of the methods is a void method that will gets called an unknown and large amount of times. How to specify that any n …
1
vote
1answer
224 views

Mocking java.sql.Connection with EasyMock

Hi, I'm a unit test and Java web newbie and I'm stumped. How do I create a mock of java.sql.Connection to be used for my DAO? I'm looking for tutorials but I can't find any good …
2
votes
6answers
397 views

Unit testing DAO, am I doing it right?

I'm starting out unit testing and reviewing Java web programming. The thing is I don't know if I'm doing things right. I'm building a mini blog. I'm using EasyMock for the mock o …
2
votes
5answers
536 views

Easymock: does the order of captures matter?

This might seem like a pretty detailed question about Easymock, but I'm having a hard time finding a support site/forum/mailing list for this library. I'm encountering a bug when …
3
votes
4answers
557 views

Can I mock a super class method call?

Sometimes, you want to test a class method and you want to do an expectation on a call of a super class method. I did not found a way to do this expectation in java using easymock …
0
votes
3answers
588 views

Using Spring to inject EasyMock mocks causes ClassCastException

I am trying to get Spring to inject EasyMock mocks in my unit tests. In my applicationContext.xml, I have this: <bean id="mockService" class="org.easymock.EasyMock" factory-m …
1
vote
1answer
249 views

How do I verify a method call and ignore the return value in EasyMock?

I'm getting frustrated trying to do a simple thing - I want to invoke a method on a mock object and NOT check its return value. I just want to check that it was invoked with the co …
2
votes
3answers
1k views

EasyMock: Void Methods

I have a method that returns void in a class that is a dependency of the class I want to test. This class is huge and I'm only using this single method from it. I need to replace …

1 2 next
15 30 50 per page