Tagged Questions

JMock is a library that supports test-driven development of Java code with mock objects.

learn more… | top users | synonyms

7
votes
2answers
1k views

Does JMockit have any drawbacks at all?

This comparison shows, that JMockit has several advantages over other frameworks. Are there also any advantages that one of the others (JMock, EasyMock, Mockito, Unitils, PowerMock + ...
7
votes
2answers
153 views

Need help with writing test

I'm trying to write a test for this class its called Receiver : public void get(People person) { if(null != person) { LOG.info("Person with ID " + person.getId() + " ...
6
votes
4answers
3k 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 or jmock (and I ...
5
votes
2answers
1k views

When should we use Mockery vs JUnit4Mockery?

If writing a Java unit test with mocking using JMock, should we use Mockery context = new Mockery() or Mockery context = new JUnit4Mockery() What is the difference between the two, and when ...
5
votes
4answers
6k views

jmock mocking a static method

I have a static method in my code that I would like somehow to mock. I am using jmock. One way I suppose I could do this is to have "wrapper class" around the static method and mock this but I was ...
4
votes
1answer
273 views

About with(any(Class.class))) with JMock

With JMock: context.checking(new Expectations() {{ // Other oneOf() will() statements ... oneOf(shopAccount).enter(100, with(any(String.class))); will(returnValue(true)); // Other ...
4
votes
1answer
129 views

setting rspec expectations on internal java method calls from jruby

I would love to be able to test java code with rspec under jruby, but can't see how to set expectations on internal java method calls. Given the following java: public class A { public String hi() ...
4
votes
4answers
2k views

How to get started with testing(jMock)

I'm trying to learn how to write tests. I'm also learning Java, I was told I should learn/use/practice jMock, I've found some articles online that help to certain extend like : ...
4
votes
4answers
1k views

What is the best way to use Guice and JMock together?

I have started using Guice to do some dependency injection on a project, primarily because I need to inject mocks (using JMock currently) a layer away from the unit test, which makes manual injection ...
4
votes
9answers
912 views

Unit test helper methods?

I have classes which prviously had massive methods so i subdivided the work of this method into 'helper' methods. These helper methods are declared private to enforce encapsulation - however I want ...
3
votes
2answers
104 views

Mock/Test Super class call in subclass..is it possible?

I am looking for a solution to mock the super call in subclass ButtonClicker. Class Click { public void buttonClick() throws java.lang.Exception { /* compiled code */ } } Class ...
3
votes
3answers
183 views

Is there a simple way to match a field using Hamcrest?

I want to test whether a specific field of an object matches a value I specify. In this case, it's the bucket name inside an S3Bucket object. As far as I can tell, I need to write a custom matcher for ...
3
votes
1answer
49 views

Is there a way to include two versions of the same artifact in Maven?

<dependency> <groupId>org.jmock</groupId> <artifactId>jmock</artifactId> <version>1.2.0</version> </dependency> <!--Include Both Jmock ...
3
votes
3answers
778 views

JMOCK Dependency Issue

I am trying to get through my very first JMOCK tutorial http://www.jmock.org/getting-started.html, and it didn't go well. The problem I encountered is below: java.lang.SecurityException: class ...
3
votes
1answer
287 views

Using JMock on the Android

How can I use JMock on the Android? I've several posts saying its not possible, but surely there's some way to do it? The issue seems to be getting the Android to even recognize the JMock jar ...
3
votes
1answer
680 views

Comprehensive Pros/Cons of Mocking Frameworks for GWT

I'm interested in using the right mocking framework for my GWT app. It's my understanding that Mockito, EasyMock, and jMock are some of the most popular for Java. Could someone list pros/cons for the ...
3
votes
1answer
238 views

Do any tools use the hamcrest Factory annotation?

I sat down to write a matcher today and decided to take a quick look at the jmock documentation to refresh my memory on the process, and noticed a reference to the org.hamcrest.Factory annotation. ...
3
votes
3answers
3k views

Using Spring JUnit4 and JMock together

When I run my Junit4 tests now I use the @RunWith(SpringJUnit4ClassRunner.class) annotation which allows me to inject Spring Beans into my test class. I would like to use the JMock 2 framework (which ...
3
votes
4answers
3k views

Testing a Concrete class with Jmock

I have class with a forwarding method foo: void foo( Concrete c, String s ) { c.bar( s ); } I wish to test that foo in fact forwards. Unfortunately for me, Concrete is a class in a third-party ...
2
votes
2answers
57 views

jUnit + jMock and log4j

I've given a task to do a JUnit + JMock on a program created by other programmer. Most of the class has this static field logger, i.e.: static Log logger = ...
2
votes
1answer
46 views

Can you mock out method calls in the class you're testing?

I'm trying to write JUnit tests for my code but with in some of my methods other methods are called. Is it possible to mock these calls out? E.g. s3FileWrite(File file, Status status) { S3 s3 ...
2
votes
3answers
122 views

How to test protected methods of abstract class using JUnit and JMock

I have such situation - I have interface (say MyInterface) and simple partial implementation (AbstractMyInterface). The latter adds a few protected methods which I would like to test. Currently I ...
2
votes
1answer
45 views

Hamcrest matcher for Object… parameters

I got method of class interface Class1{ void method1(SomeObject... parameters); } I have a custom Hamcrest matcher public class SomeObjectMatcher extends BaseMatcher<SomeObject>{...} ...
2
votes
1answer
95 views

Does mockito have an equivalent idiom to jMock's States?

The book Growing Object Oriented Software gives several examples in jMock where the state is made explicit without exposing it through an API. I really like this idea. Is there a way to do this in ...
2
votes
1answer
146 views

How do I use jMock's ClassImposteriser for Android unit testing?

In my unit test, I've tried the following: import org.jmock.Mockery; import org.jmock.Expectations; import org.jmock.lib.legacy.ClassImposteriser; public class MyActivityTest extends ...
2
votes
6answers
206 views

Bringing unit testing to an existing project

I'm working on an existing JEE project with various maven modules that are developed in Eclipse, bundled together and deployed on JBoss using Java 1.6. I have the opportunity to prepare any framework ...
2
votes
1answer
241 views

Scala problem with jMock expectations and returning a value from mock

Solved. IntelliJ didn't highlight the fact that my imports were incomplete. Hi, I have a simple Scala program that I'm trying to develop using jMock. Setting basic expectations works nicely but for ...
2
votes
2answers
540 views

Cactus versus mock objects (jMock, Easy mock)

I'm little confused with Cactus and mock objects (jMock, Easy mock). Could anyone please answer the following questions? When to use Cactus for testing? When not to use Cactus for testing? When to ...
2
votes
1answer
581 views

AtUnit vs 'Junit,JMock and GUICE' by hand -?

How does AtUnit fare with respect to unit testing using DI and guice ?. Please share your experiences.
2
votes
2answers
88 views

Customize formatting of passed-in parameter in an expectation

I'm using jmock to mock out an OutputStream and set expectations on the data that gets written to it. So I have an expectation that looks something like this ...
2
votes
0answers
832 views

Mock Struts FormFile

I have an action class that expects a FormFile from a DynaActionForm. Typically in JMock, I'll just add request params to the struts mock, which will in turn populate the DynaActionForm. Obviously, ...
1
vote
2answers
19 views

JMock, What should you do when the mock object gets casted to a concrete class?

Not sure how I should be asking the question, but when I define my mock objects, and somewhere in the code it attempts to cast it to a different type the test throws me $Proxy6 cannot be cast to ... ...
1
vote
1answer
38 views

Is it possible to set an expectation of zero interactions with a mock using JMock

I am new to JMock, however I have used Mockito before. I want to assert that a mock has not been used during one of my tests. In Mockito I would use verifyZeroInteractions. Is there an equivalent in ...
1
vote
2answers
71 views

Hamcrest matcher for a String, where the String contains some random values

Is there a way to match the following string with any of the hamcrest matchers. ...
1
vote
1answer
144 views

JMock unexpected invocation

Below I am just trying to mock a class named TestWrapper and set 'allowing' expecations on it. However, when setting expectations I get error. When using easymock and just setting expectations, this ...
1
vote
1answer
158 views

mock facescontext and uicomponent in seam

I am trying to write unit test for the following method in seam. To do this…I need to mock both facesContext and UIComponent and pass it to method getAsObject . I tried using Jmock and seam but ...
1
vote
2answers
70 views

Where does symbol once come from?

I'm trying to work through an article (http://martinfowler.com/articles/mocksArentStubs.html) on mocking with pseudocode in it that I'm implementing, but I'm having trouble finding once (and eq, ...
1
vote
1answer
124 views

JMock Generic return types

I'm writing a JMock test for a class that needs to create a number of collections within itself. I am supplying the class with a factory which will generate a Collection when needed. interface ...
1
vote
2answers
98 views

How does jmock and mockito create wrappers?

For example, I have the following code: SomeClass stub = Mockito.mock(SomeClass.class); After that, stub is a normal implementation of SomeClass, but with its own behavior (default is to just throw ...
1
vote
2answers
100 views

JMock assertIsSatisfied in TearDown?

I don't know why, but I have always written my JMock tests like this: @Test public void testMyThing() throws Exception { mockery.checking(new Expectations() {{ oneOf(mockObj).foo(); ...
1
vote
2answers
169 views

Standard way to capture arguments in JMock

Is there an already build in standard way in JMock to capture method arguments to test the argument object later on with standard Junit functionality? Something like final ...
1
vote
3answers
201 views

What is the difference between mocks and stubs ( JMock)

What is the difference between mocks and stubs in jMock? I can create both with jMock? how i can create stubs with it and what the situation is most appropriate for this, I believe that using stubs is ...
1
vote
1answer
179 views

JMock Allow Other Method Calls

I'm using JMock to test the behavior of a class using an object. I want to test that the method a() is called. However, b() and c() also are called on the object too. Therefore if my expectations ...
1
vote
1answer
331 views

Using Hamcrest matchers with JMock in Groovy

I'm new to Groovy (and to JMock too for that matter) and having some trouble building expectations that use matchers on the parameters of the methods being mocked. When I try to do something like ...
1
vote
1answer
626 views

How to run JUnit Eclipse Plugin tests with JMock?

I have Eclipse plug-in and junit tests for it, which are using jMock library. When I run my test 'as junit', all tests are running correctly. But when I run them 'as JUnit plugin test' I'm getting ...
1
vote
3answers
193 views

How to effectively (not) test service layer

In one of our service classes I have a bunch of methods which just return the DAO result with no processing like public void acceptRequest(User from, User to) { rosterDAO.acceptRequest(from, ...
1
vote
1answer
358 views

Google Protobuf and Jmock

Need to setup JMock code to test call back with google protobuf Full project is located at http://github.com/andrewmilkowski/template-transport In short, following are methods signatures (below) ...
1
vote
2answers
392 views

NetBeans Platform Unit Test Library Dependencies

I am working on a Netbeans Platform RCP application. I use jmock in my unit tests and I have created a Library Wrapper Module to import the necessary libraries. The Module has an section named ...
1
vote
3answers
931 views

Jmock mock DAO object

I wrote a method that retrieves certain list of strings, given a correct string key. Now when I create a list(the one to be retrieved by method descibed in previous sentence) and create test I can ...
1
vote
3answers
545 views

Lack of support base class in Junit4/Jmock2

We're finally migrating our unit test code base from JUnit 3 to JUnit 4. We also make heavy use of JMock 2. With JUnit 3, JMock provides a useful base class for your tests (MockObjectTestCase), ...

1 2