For questions about using jMock. JMock is a helper framework for test-driven development and unit testing.

learn more… | top users | synonyms

0
votes
4answers
84 views

Check if a method was called inside another method

Is there any way in java to check if a certain method was called inside another method? I am testing a class and the method I am having trouble with plays sound and there is virtually no way of ...
0
votes
1answer
25 views

Second set of brackets in JMock expectations

In JUNIT tests, I'm using JMOCK. In some samples, I have seen code similar to the following snippet: mock.checking(new Expectations(){ { allowing(tmp).assign( ...
0
votes
1answer
84 views

java.lang.NoSuchMethodError powermock

Guys Question: How to mock a static final class which has defined some other static final class? Problem Description: When I want to write some unit test case for a final class ...
0
votes
1answer
42 views

jMock “unexpected invocation” for a method that I have a oneOf(instance).method() expected

I can't seem to figure out what I'm doing wrong here: This is the method I'm testing: public List<Mo> filterDuplicatesByName(List<Mo> dbMos) { List<String> names = ...
0
votes
1answer
64 views

JMock and Scala - unexpected invocation error

I'm new to JMock and trying to get a simple unit test working through Scala. The test is mocking an interface and then setting some xpectations before executing a method on the mocked interface. ...
0
votes
1answer
154 views

How to mock static method using junit and easymock [duplicate]

The problem is next: I need to test method methodTest() of private class. The methodTest() call static method staticExternal() from external library. How to replace the staticExternal() on a ...
0
votes
1answer
58 views

Junit and Jmock to test Springs TransactionSynchronizationManager

I have some code that uses the transaction sychronisation manager.. but i cannot seem to get it work in mocks.. im mocking the entity manager and transaction manager.. so that my context save an ...
0
votes
1answer
69 views

Jmock unexpected method invocation, cannot see why

I have the following method.... public void testa(Car car) { em.persist(car); car.setEngine(null); } in my test i have: protected final Car mockCar = context.mock(Car.class); @Test public ...
1
vote
1answer
58 views

IllegalAccessError when accessing package private class in JMock

I have written a unit test using JMock 2.6.0-RC2 that makes use of several package private classes. For some reason, this causes an IllegalAccessError: java.lang.IllegalAccessError: tried to access ...
2
votes
1answer
54 views

OR in Expectation

How can I do an OR operation when specifying my expectations ? The arguments can either be 10 or 11. public void testGetRandom() { context.checking(new Expectations() {{ oneOf ...
0
votes
0answers
20 views

in jmock expectations

I am new to jmock and am stuck in a situation. Basically i have a object which tries connecting to a sever. object.connectToServer(username, password); After few lines of code the object again ...
0
votes
1answer
64 views

Jmock, Spring and anotated resources in testing

I write controller tests for Spring with Jmock. The controllers use interfaces for database operations. These are service classes. I can jmock them and pass them to controller in test via setter. ...
0
votes
1answer
32 views

Jmocking classes

I ran into this question that has been asked 3 years ago: jMock Mocking Classes and Interface My question is how can you jmock classes that are not interfaces? As far as I know, class jmocking can ...
1
vote
1answer
427 views

JMock “unexpected invocation” when the same invocation is “expected once, never called”

I changed some method somewhere in our code which shouldn't have caused any weird test failures, but JMock seems to think otherwise. I boiled the issue down to the minimal amount of cruft, which ...
0
votes
3answers
261 views

How to mock JdbcTemplate.queryForObject() method

my method looks like public class Decompile extends JdbcDaoSupport public void getRunner(){ String val = this.getJdbcTemplate().queryForObject(sql,String.class, new Object[]{1001}); } } please ...
0
votes
1answer
79 views

Mocking spring controller validator

I want to unit test this Spring controller method: @Autowired private MyValidator validator; public String register( HttpServletRequest request, ModelMap model, Principal principal, ...
0
votes
3answers
80 views

Mock a static method

I want to write a test case that will verify a method in my class. I have a local ApplicationLauncher object in my method that has to be mocked because it calls a method, launch(), which should not ...
0
votes
1answer
87 views

NullpointerException when testing a controller method

Here is a controller method I'm about to test with JUnit and JMock. public String myMethod(ModelMap model, Principal principal, @PathVariable MyObject obj) { if (obj != ...
2
votes
2answers
190 views

JMock expectation IllegalArgumentException

I am trying to use the allowing method to fix the return value of a method on one of my mocked objects. I have the following method on a mocked object jdbc which I want to allow for: List<T> ...
1
vote
1answer
63 views

How to mock a class which has a constructor with parameter of mock object using JMock?

How to mock a class which has a constructor with parameter of mock object using JMock ? I need to cover the below line of code in my method using JMock. Search search = Search(request); In Unit ...
1
vote
2answers
137 views

Testing ModelMap in Spring with JMock

I'm new to JMock, trying to develop a Spring controller test. Here is my test method: @Test public void testList() { context.checking(new Expectations() {{ Student student = new ...
0
votes
1answer
105 views

How to make a “nice mock” by using JMock?

Is there the best way to make nice mock by using JMock? For example: public interface Dependency { void someSetUp(); void interactionUnderTest(); void someCleaningAfterWork(); } public ...
0
votes
1answer
125 views

Getting started with JMock and Spring 3

I have started to study JMock. My goal is to write JUnit tests for Spring application, a.k.a controllers and domain classes. In controllers data from database and other services is put to models. I ...
0
votes
0answers
62 views

JUnit - assertion erros are not propagated

I am experiencing a certain bug in JUnit/JMock. I am trying to mock a couple of objects and then assert that all expectations is satisfied. I am running a simple test such as : @Test public void ...
0
votes
1answer
52 views

Why does this TestNG test pass although the mock method is not invoked?

I user TestNG and jMock for my unit test but, I have a problem with TestNG. It marks the test as passed when I expect mock object method to be invoked and it is not! public class SomeTestTest { ...
0
votes
1answer
151 views

How to mock 2 or multiple prepared statements per connection in jMock?

public void testCreate() throws ApplicationException { DutyDrawback drawback = new DutyDrawback(); drawback.setSerialNumber("TEST123"); drawback.setSnProcessInd("Y"); ...
1
vote
2answers
766 views

Jmock - How to mock a static method [duplicate]

Possible Duplicate: jmock mocking a static method I am working on a legacy unit test which uses static methods of a class XX. I have now changed the class to get a field value from Spring ...
3
votes
1answer
114 views

Using JMock2 with Matchers in Groovy: problems with 'with' method

I have a following snippet with JMock expectations in my test method: context.checking(new Expectations() {{ allowing(listener).tableChanged(with(anyInsertionEvent())); ...
3
votes
3answers
623 views

Capturing method parameter in jMock to pass to a stubbed implementation

I wish to achieve the following behavior. My class under test has a dependency on some other class, I wish to mock this dependency with jMock. Most of the methods would return some standard values, ...
2
votes
1answer
293 views

How to Mock Command Object that is inside Controller

I have a controller class, inside of which i have a command object. I have a method find() which uses this command object as follows: class itemController{ //command object class ...
2
votes
1answer
98 views

jmock, return new object upon each call

I am setting up a mock object which is supposed to return a new business object each time I call a method f() on it. If I simply say returnValue(new BusinessObj()), it will return the same reference ...
1
vote
2answers
515 views

JMock- java.lang.NoSuchMethodError: org.hamcrest.Matcher.describeMismatch()

I understand that the solution is to somehow make sure that Junit is loaded after hamcrest. I have an intellij project, in which I setup an external library, which contains both JUnit and JMock and ...
0
votes
1answer
136 views

How to JMock a Singleton

My application has this structure: there's a RepositoryFacade (that is a Singleton) that uses many other ObjectRepository that are Singleton (UserRepository, etc). Now I'd like to test it, mocking ...
2
votes
1answer
235 views

JMock causes JUnit ExpectedException to pass even if an exception is not thrown

When I use JMock with JUnit ExpectedException the tests seem to pass even if the exception is not thrown. For example, the test below fails, as it should. But if I uncomment the two commented lines, ...
0
votes
1answer
214 views

Using JMock resources with Jersey Test Framework

Because JerseyTest has to be extended, I've been unable to get a mock resource into Jersey's ResourceConfig. The following code generates a NullPointerException because mockResource has yet to be ...
1
vote
1answer
102 views

How to inject values into a mocked object's constructor or via a setter? Am getting Unexpected Invocation error

My question: how to create a mocked object and inject attributes via the constructor or a setter? I get unexpected invocation errors. I am doing a set on my mock object in @Before to set the name ...
0
votes
1answer
197 views

How to test a void method with JMock

How to test a void method i.e. method that doesn't return anything in JMock?
0
votes
1answer
229 views

spring junit testing with JMock [closed]

I have a Spring maven project and we are going to use JMock to test service/business/DAO layers of my project as suggested by client. Can somebody please provide me the good link going through which I ...
0
votes
1answer
68 views

How do I use states in jmock?

I'm writing an integration test that simulates a sequence of actions coming from the front end. I'm setting up my expectations like this: context.checking(new Expectations() {{ States state = ...
3
votes
4answers
290 views

How to unit test a class which extends/inherits a 3rd party class

I have created a new class which extends a 3rd party abstract class. The new class calls methods in the abstract class. The problem I have is when trying to write the unit test, I'm not sure how to ...
1
vote
1answer
207 views

A little guidance on jmock

I have tried the documentation on the jmock site and I'm simply lost. It appears that it's great documentation for someone that already knows how to use it. I'm not one of those. I'm looking for one ...
1
vote
1answer
148 views

JMock - several invocations with different arguments

The method I want to test is calling a mock method with different arguments: public void methodToTest(){ getMock().doSomething(1); getMock().doSomething(2); getMock().doSomething(3); } In ...
1
vote
1answer
64 views

JMock - only subset of methods in Expectations block

Having previous experience with RhinoMocks, which distinguishes between two separate Mockery type of classes: one being strict, that performs checks exactly like standard JMock mockery, and normla ...
3
votes
3answers
169 views

JMock - strange syntax for adding expectations

I am currently writing a couple of tests involving JMock. I cannot understand the following structure of the code: context.checking(new Expectations() { //context is of type Mockery of course ...
0
votes
1answer
123 views

JMock strange try/catch clause

I am trying to write up a few tests using JMock and the following code will be added: db = context.mock(DBResultQueryExecutor.class); context.checking(new Expectations() {{ oneOf ...
0
votes
2answers
351 views

JMock map expectations

I have a dependency with a method that takes a Map as an argument. public interface Service { void doSomething(Map<String, String> map); } I'd like to write an assertion that this ...
1
vote
1answer
86 views

JMock Expecting Custom Class

I have the following expectation in a JUnit test class: CustomEvent myCustomEvent = new CustomEvent(data1, data2); m_context.checking(new Expectations() {{ ...
0
votes
1answer
172 views

Setting up a Mockery's Expectations in relation to protected methods

I'm running into a problem with trying to set up a Mockery to test for method invocation. I saw How to test protected methods of abstract class using JUnit and JMock and it's essentially the same ...
0
votes
3answers
431 views

Mock a superclass constructor

I would like to know if I can mock a super class constructors call and its super() calls. For example, I have the following classes class A { A(..) { super(..) } } class B ...
1
vote
3answers
60 views

How do I find out what Library a method is in?

Specifically: what library is MockObjectTestCase in? I'm following this link: http://therning.org/niklas/2005/05/jmock-solid-testing/ Is there an easy way to find out this kind of information? IS ...

1 2 3 4