Mockito is a mocking framework for Java. It is inspired by EasyMock but aims to simplify mock creation even further.

learn more… | top users | synonyms

0
votes
1answer
44 views

Mocking methods from subclass while unit testing class methods

I am trying to write a unit test for a particular method of a class - foo. This class extends another class - bar, which is inside an external jar. The problem is that this base bar has some methods ...
4
votes
1answer
43 views

Simple Mockito verify works in JUnit but not Spock

Using the most basic example from Mockito's examples page, I am able to run successfully in JUnit. However, when I run the same test in Spock, it fails. JUnit/Java version (this passes): import ...
1
vote
0answers
36 views

Testing Spring MVC @ExceptionHandler method with Spring MVC Test

I have the following simple controller to catch any unexpected exceptions: @ControllerAdvice public class ExceptionController { @ExceptionHandler(Throwable.class) @ResponseStatus(value = ...
0
votes
1answer
33 views

How to perform a custom check of the arguments being passed to mockito mocks

I have a problem writing tests for scala project using specs2 and mockito. Is there a way to perform some complex checks for arguments that was passed by a method being tested to a mocked service ...
0
votes
1answer
29 views

Leveraging Mocks in BDD and TDD (Spock + Mockito)

I am using Spock and Mockito and am having a difficult time figuring out how to get value from Mocks. I am attempting to build RESTful Services for a REST interface called UserResource that ...
0
votes
1answer
34 views

Mockito - test method without inner method

I have the following class public class EmailManager{ protected String getEmailContent(String content,String image){ String result = content.toPrettyLook(); //this is an inner method ...
0
votes
1answer
45 views

Junit/Mockito - wait for method execution

In my application I use observer pattern for some operations and I want to test them in unit tests. The problem is that I don't know how can I test observers using junit/mockito/something else. Any ...
0
votes
2answers
38 views

Mockito method returns null

I looked in the forum but couldn't find why this would happen I have public class AImpl implements A{ @Autowired B bImpl; protected void doSomething(){ String s = "test"; ...
1
vote
3answers
65 views

How to use Mockito for testing sendEmail() method without sending email?

I need your help with using Mockito for unit tests. My project have only DAOs and Services, so it's web project. I have interface EmailDao and it's implementation EmailDaoImpl class. Now I have ...
0
votes
2answers
49 views

Using Mockito for unit-testing a presenter with a passive view

The problem A presenter that "manages" a passive view subscribes to events that occur in that view (e.g. button click), and does not directly expose the methods that handle those events as public ...
1
vote
1answer
30 views

Can Mockito return an argument to a method AFTER calling a method on it?

I'm new to Mockito and trying to write tests for some legacy code before I start a large refactoring and have come across the following pattern which I expect to see regularly in the code base: ... ...
0
votes
1answer
67 views

TDD best practice?

Im using a TDD approach with my latest project. Its new for me :) I have a service which will save a CSV record to the database. It will check values for existence and add if necessary - hence the ...
3
votes
1answer
55 views

Is mockito changing the objects?

I have the following structure public class A{...} public class B extends A{ private C cObject; private Object otherValue; B(){ cObject = new C(this); } } public class C{ ...
0
votes
2answers
54 views

Mockito mock objects returns null

Hey i try to implement some tests for my jsf application and for the mocks i am using mockito. (I also use spring) @RunWith(MockitoJUnitRunner.class) public class GeneralConfigServiceImplTest { ...
1
vote
1answer
37 views

Classcast exception on mocking JAX-WS proxy

Classcast on mocking JAX-WS proxy I try to use the JaxWsPortProxyFactoryBean in Spring (3.2.2 Release), but it fails when I try to mock the port in my unit test. The reason for the classcast ...
0
votes
0answers
24 views

Restubbing same mock object on Mockito - Throws stack overflow error

I have an object stubbed for chained method calls ReceiptAcknowledgementExceptionDocumentImpl receiptAckExpDoc = PowerMockito ...
0
votes
1answer
13 views

stubbing chained methods in PowerMockito

I need to stub following call in PowerMockito. appAcceptedDoc .getAppointmentAccepted().getRequestResponse().getRequestersID() .getStringValue() I ...
1
vote
1answer
32 views

Mockito verifying method calls

I'm trying to learn how to use Mockito and i'm hung up on how to go about verifying a method on a certain object was called X amount of times. I have the following test code verify(record, ...
0
votes
0answers
36 views

Mockito + PowerMock LinkageError while mocking system class

I've got such a code snippet: @RunWith(PowerMockRunner.class) @PrepareForTest({Thread.class}) public class AllMeasuresDataTest { @Before public void setUp() throws Exception { } @Test public void ...
0
votes
1answer
28 views

Powermock verify private static method call in non static method

Dear stackoverflow comrades, I again have a problem in getting a specific PowerMock / Mockito case to work. The issue is, that I need to verify the call of a private static method, which is called ...
0
votes
1answer
63 views

Mockito with local variables

I have a simple method that returns a String. It also creates a local List. I want to test the value added to the local List. Here is an example package com.impl; import java.util.ArrayList; ...
-1
votes
0answers
17 views

Mockito and Selenium 2.0 [closed]

I'm about to do some software testing fot TAD developers and I would like to ask if it is best to use Mockito in some methods? Thanks in advence
0
votes
1answer
57 views

JMS Testing - JMSTemplate send not executed

I have code piece sending jms messages via Spring JMSTemplate. For testing the the method i use Mockito. My code looks like following.... publishDialogueServiceMessage()-> brokerUrl = ...
0
votes
1answer
56 views

Mockito mocking get methods from the database services

I am trying to mock a getBy() method after adding an element by a mocked service add. This is what I have: FeedItem feedItem = feedServiceTested.createFeedItem("Text Test", "Category Test", "Author ...
1
vote
3answers
52 views

Difference between @Mock and @InjectMocks

I am new to Mockito framework. What is the difference between @mock and @InjectMocks?
0
votes
1answer
52 views

Mockito - Invalid use of argument matchers

I have Junit test that is testing jms message sending. I am using Spring jmsTemplate to to do this. Here I as in the following code I want to check whether the JMS template has called send message ...
0
votes
1answer
34 views

Partial Mocks for DI?

For my last Java project I unit tested all classes. Each class had it's own interface and implementation (ie. Person and PersonImpl). Classes interacted with each other via interface only and I used ...
2
votes
1answer
48 views

Mockito for Objects in Scala

I'm using Scala 2.10, specs2 and Mockito. I want to mock scala.io.Source.fromURL(). The issue seems to be fromURL() is a function in io.Source's object. val m = mock[io.Source] m.fromURL returns ...
1
vote
0answers
33 views

GwtTestWithMockito works from eclipse but not from maven cmdline

My GwtTestWithMockito derived tests run fine within eclipse. When run from the command-line with maven, every test throws at initialization with the stacktrace below: Forking command line: /bin/sh ...
0
votes
1answer
39 views

Junit Interface Powermock

Edited: Rewrote the question in a shorter way. Thanks for pointing this out! :) I need to write JUnit tests where I have to mock a couple of private methods and fields with no setter/getter. I tried ...
1
vote
1answer
23 views

checking constructor arguments in mockito' verify method

How to check that compareTo method will be invoked with this argument new ComparableVersion("1")) verify(comparableVersion).compareTo(any(ComparableVersion.class)); Now I use any - this is not ...
1
vote
2answers
38 views

PowerMockito: how to mock methods called by the constructor?

I have the following class: public class Foo { public Foo() { initField1(); initField2(); initField3(); } } I need to change the behaviour (to mock) initField1() and ...
0
votes
0answers
48 views

RoboGuice unit test injecting app module instead of test module

I am trying to write a JUnit test for an Android Service using RoboGuice 2.0. I have a test module that binds injected dependencies to Mockito mock objects. However, when I run the test, the real ...
2
votes
1answer
37 views

Test a method which calls another method of the object in mockito

I have an interface, ex: interface MyService { void createObj(int id) void createObjects() } I want to test an implementation of the createObjects method, which has body like: void ...
0
votes
0answers
25 views

PowerMockito's mockStatic can only run with one invocation?

I’m having this wired problem not sure if you saw this before or not. Here’s a simple code to demo the problem: import org.mockito.Mockito; import org.powermock.api.mockito.PowerMockito; import ...
0
votes
1answer
42 views

Use Mockito to test that super was not called

Can I use Mockito to test whether calling a method on my object calls through to the super implementation? I can't find a way to do this. Basically I want something like this: ...
0
votes
0answers
32 views

mocking up method return invoked in a separate thread using Mockito

I'm having a problem mocking up a method return value on my mock object invoked in a new thread. In my test I have : @Test public void startConnectionTest(){ clientConnection.startConnection(); ...
0
votes
2answers
59 views

mockito test void Method, override member variable

I'm new to unit-testing and mockito but i need to test this class: public class XMLHandler { private static final String CONFIG_FILE = "path/to/xml"; private XMLConfiguration config = null; ...
0
votes
2answers
32 views

how can I inject “nulls” into autowired spring beans?

I am writing unit-tests and have a quite complex setting. A dependent bean sets up some listeners and passes them autowired services. I want to test that the listeners are present, but not call ...
0
votes
0answers
32 views

Mockito: stubbing a method with a class argument, not behaving as expected

I have this class that just delegates an http call to a third party library: public class HttpService { Gson gson = new Gson(); public <T> T fromJson(String json, Class<T> ...
1
vote
3answers
52 views

Mockito - verify a double value

I have a method called method1 that takes a double which is called on myManager I am passing into this 65.888 * 60. When I try and verify this I get floating point problems. The verification fails. It ...
0
votes
1answer
38 views

Mockito InvalidUseOfMatchersException while mocking an Interface/Abstract class

I recently upgrade Maven Surefire plugin to version v2.14.1 (from v2.6) in my project. After this upgrade Mockito started throwing InvalidUseOfMatchersException in all JUnit tests where a ...
0
votes
1answer
42 views

When trying to unit-test authorizations with@PreAuthorize I get “No AuthenticationProvider found for UsernamePasswordAuthenticationToken”

First: my question seems like No AuthenticationProvider found for UsernamePasswordAuthenticationToken, but implementing the solution found there doesn't help me any further. My app-context looks like ...
0
votes
2answers
53 views

Using mocks within a constructor

Is it possible to use mocks within a constructor? Class A{ public B b = new B(); public A( String input ){ //I need to stub this method b.someMethod( input ); } // ...
2
votes
0answers
58 views

Mocking Static Methods with PowerMockito on Android

I'm trying to stub out a static method so that I can unit test a REST Api interface. I'm using... PowerMockito 1.5 (to enable mocking of statics) Roboelectric 1.2 (to stub out the rest of the ...
0
votes
0answers
41 views

Python Mock: Stub method only for set parameters

Python mockito lets you stub methods when called with certain parameters. E.g. from mockito import when # No wonder that modules have to be imported first import os.path # Stub calls ...
3
votes
1answer
49 views

Is it possible to throw an abstract exception using Mockito?

I have a use case where I'm trying to ensure that an abstract exception is thrown when a particular method is called in my class. I am using Mockito to do this, but have noticed that Mockito is ...
-1
votes
3answers
68 views

Mockito How to mock and assert a thrown excption?

I'm using mockito in a junit test. How do you make an excetion happen and then assert that it has (generic pseudo-code)
0
votes
0answers
49 views

Mockito 1.9.5 + Dexmaker on Android in Eclipse get NoClassDefFoundError

I need to test one application on Android in Eclipse. I made Android Test Project and in it this class. I need some mock so i use Mockito so i added into my test project library this: ...
1
vote
1answer
47 views

how unit test custom writable object using mockito

If I have a custom object class that implements Writable, what's the best way to test that serialization/deserialization are working correctly with unit tests with mockito? I was thinking of creating ...

1 2 3 4 5 18