Tagged Questions

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

28
votes
12answers
13k views

Injecting Mockito mocks into a Spring bean

I would like to inject a Mockito mock object into a Spring (3+) bean for the purposes of unit testing with JUnit. My bean dependencies are currently injected by using the @Autowired annotation on ...
21
votes
4answers
4k views

Mockito: How to make a method return an argument that was passed to it

Consider a method signature like: public String myFunction(String abc); Can Mockito help return the same string that the method received?
15
votes
1answer
7k views

Using Mockito's generic “any()” method

I have an interface with a method that expects an array of Foo: public interface IBar { void DoStuff(Foo[] arr); } I am mocking this interface using Mockito, and I'd like to assert that DoStuff() ...
15
votes
7answers
6k views

Using Mockito to test abstract classes

I'd like to test an abstract class. Sure, I can manually write a mock that inherits from the class. Can I do this using a mocking framework (I'm using Mockito) instead of hand-crafting my mock? How?
12
votes
7answers
3k views

Comparison between Mockito vs JMockit - why is Mockito voted better than JMockit?

Hello I'm investigating which mocking framework to use for my project and have narrowed it down to JMockit and Mockito. I notice that Mockito was voted "the best mock framework for Java" on ...
11
votes
2answers
2k views

learning resources for mockito please

i am required to use mockito to create unit testing framework for existing code. I am unable to find a good place to get started with learning Mockito. Could you please point me to a good learning ...
10
votes
3answers
5k views

Why does Mockito not mock static methods?

I read a few threads here about static methods, I probably understand the problems misuse/excessive use of static methods can cause. But I din't really get to the bottom of why is it hard to mock ...
9
votes
2answers
5k views

Using Mockito to mock classes with generic parameters

Is there a clean method of mocking a class with generic parameters? Say I have to mock a class Foo<T> which I need to pass into a method that expects a Foo<Bar>. I can do the following ...
9
votes
12answers
4k views

How to mock a String using mockito?

I need to simulate a test scenario in which I call the getBytes() method of a String object and I get an UnsupportedEncodingException. I have tried to achieve that using the following code: String ...
8
votes
3answers
578 views

Mockito: How to mock an interface of JodaTime

I use JodaTime#DateTime, and I need to mock its behavior. Since it is not possible to directly mock JodaTime#DateTime, I create an interface of it Clock.java public interface Clock { DateTime ...
8
votes
2answers
12k views

How to make mock to void methods with mockito

How to make mock void methods.I performed observer pattern but i cant mock with mockito because i dont know the mock way with mockito.And i search from the internet i cant find properly sample. ...
8
votes
5answers
7k views

Use Mockito to verify that nothing is called after a method

I'm using Mockito to write a unit test in Java, and I'd like to verify that a certain method is the last one called on an object. I'm doing something like this in the code under test: ...
7
votes
1answer
170 views

java.lang.LinkageError: ClassCastException

I do experience a really annoying problem with TestNG and RESTeasy. I do have a class that runs several tests against an API class which uses the RESTeasy framework to expose itself. However if I ...
7
votes
4answers
1k views

Attempt to stub android Activity class using PowerMockito throws RuntimeException “Stub!”

I found this example where they used PowerMock and EasyMock to stub/mock the Menu and MenuItem classes for android. I have been trying to do something similar with PowerMock and Mockito with the ...
7
votes
3answers
2k views

Mockito preferrable over easymock?

recently I made the switch to Mockito framework and am very happy with it (see also blog-post). The switch from easymock to Mockito was very straightforward and I managed to make the tests down ...
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 + ...
6
votes
1answer
160 views

Throw exception instead of returning default value

I'm new to Mockito and want to use it in unit tests. What I don't like is mocks created with Mockito.mock(Class<T>) return default values (like null) for methods that have no behavior ...
6
votes
1answer
1k views

Mock File class and NullPointerException

I'm creating a File mock object with Mockito that will be used as the directory to store a new File. Folder folder = Mockito.mock(File.class); File file = new Agent().createNewFile(folder, ...
6
votes
2answers
1k views

How to properly match varargs in Mockito

I've been trying to get to mock a method with vararg parameters using Mockito: interface A { B b(int x, int y, C... c); } A a = mock(A.class); B b = mock(B.class); when(a.b(anyInt(), anyInt(), ...
5
votes
4answers
94 views

Mockito: Mocking “Blackbox” Dependencies

So I have been asked to read up on mocking and BDD for our development team and play around with mocks so as to improve a handful of our existing unit tests (as an experiment). I have ultimately ...
5
votes
2answers
394 views

mockito callbacks and getting argument values

I'm not having any luck getting Mockito to capture function argument values! I am mocking a search engine index and instead of building an index, I'm just using a hash. // Fake index for solr ...
5
votes
1answer
1k views

Can Mockito capture arguments of a method called multiple times?

I have a method that gets called twice, and I want to capture the argument of the second method call. Here's what I've tried: ArgumentCaptor<Foo> firstFooCaptor = ...
5
votes
3answers
552 views

What to do when Java Best Practices conflict with Mockito

My development team has started to use Mockito and have classes that have been defined as 'final'. I've read in Effective Java by Joshua Bloch and in the SO thread When to use final that all classes ...
4
votes
3answers
57 views

Value of Behavior Verification

I've been reading up on (and experimenting with) several Java mocking APIs such as Mockito, EasyMock, JMock and PowerMock. I like each of them for different reasons, but have ultimately decided on ...
4
votes
2answers
148 views

Mockito's Matcher vs Hamcrest Matcher?

That's going to be an easy one, but I cannot find the difference between them and which one to use, if I have both the lib's included in my classpath?
4
votes
1answer
104 views

mocking protected method

I want to mock an inherited protected method. I can't call this method directly from java code as it is inherited from class that in another package. I can't find a way to specify this method to stub ...
4
votes
3answers
174 views

Mockito spy returns different result than actual method call

I have the following code: public Object parse(){ .... VTDGen vg = new VTDGen(); boolean parsed = vg.parseFile(myFile.getAbsolutePath(), false); } I am writing a unit test for ...
4
votes
4answers
85 views

Counting method invocations in Unit tests

What is the best way to count method invocations in a Unit Test. Do any of the testing frameworks allow that?
4
votes
3answers
555 views

Mocking a Properties file with Mockito in Spring

I am trying to write a unit test for the following method in my controller. @Autowired private ApplicationContext context; private String getProperty() { try { ...
4
votes
2answers
476 views

Testing Java enhanced for behavior with Mockito

I want to test a java method that has an enhanced for on it using Mockito. The problem is that when I don't know how to set the expectations for the enhanced for to work. The following code was gotten ...
4
votes
2answers
199 views

Mocking a dependency that is not visible outside

I have to unit test some old code that wasn't designed to support unit testing (No DI). Is there a way to mock an object that is being initialized within a public method? public int method() { A ...
4
votes
1answer
551 views

Scala and Mockito with traits

I had a simple class that naturally divided into two parts, so I refactored as class Refactored extends PartOne with PartTwo Then the unit tests started failing. Below is an attempt to recreate ...
4
votes
2answers
147 views

What POM dependency would allow Maven to find this JAR?

I'm trying to import Mockito into a Maven Java project. In order to build, I need to use artifacts in my companies Maven repository. Fortunately, I do find a Mockito artifact in the repository: ...
4
votes
2answers
325 views

Time dependent unit tests

I need to test a function that whose result will depend on current time (using Joda time's isBeforeNow()). public boolean isAvailable() { return (this.someDate.isBeforeNow()); } Is it ...
4
votes
2answers
612 views

How to capture a list of specific type with mockito

Is there a way to capture a list of specific type using mockitos ArgumentCaptore. This doesn't work: ArgumentCaptor<ArrayList<SomeType> argument = ArgumentCaptor.forClass(ArrayList.class);
4
votes
3answers
382 views

Testing code which calls native methods

I have a class like this: public final class Foo { public native int getBar(); public String toString() { return "Bar: " + getBar(); } } Please note that getBar() is ...
4
votes
3answers
302 views

Is there a way of having something like jUnit Assert message argument in Mockito's verify method?

Let's assume a snippet of testing code: Observable model = Class.forName(fullyQualifiedMethodName).newInstance(); Observer view = Mockito.mock(Observer.class); model.addObserver(view); for (Method ...
4
votes
3answers
721 views

Mocking scala object

I am using mockito and trying to mock a scala object. object Sample { } //test class SomeTest extends Specification with ScalaTest with Mockito { "mocking should succeed" in { val ...
4
votes
4answers
3k views

Easymock vs Mockito: Design vs Maintainability?

One way of thinking about this is: if we care about the Design of the code then Easymock is the better choice as it gives feedback to you by its concept of expectations If we care about the ...
4
votes
2answers
3k views

Mockito: How to easily stub a method without mocking all parameters

I have a method i'd like to stub but it has a lot of parameters. How can i avoid mocking all parameters but still stub the method. Ex: //Method to stub public void myMethod(Bar bar, Foo foo, FooBar ...
4
votes
4answers
1k views

How does “static reflection” work in java? (ex. in mockito or easymock)

I'm a .NET guy - and I mainly code in C#. Since C# 3.0, we can leverage lambda expressions and expression trees to use static reflection. For example, it is possible to implement GetMethodName in the ...
3
votes
2answers
57 views

Mocking member variables of a class using Mockito

I am a newbie to development and to unit tests in particular . I guess my requirement is pretty simple, but I am keen to know others thoughts on this. Suppose I have two classes like so - public ...
3
votes
5answers
67 views

Testing the behavior of void method

Suppose I have the following service object public class UserService { @Autowired private UserDao dao; public void addUser(String username, String password) { if ...
3
votes
6answers
148 views

Testing Private method using mockito

public class A { public void method(boolean b) { if (b == true) method1(); else method2(); } private void method1() {} private ...
3
votes
3answers
74 views

Unit testing with Mockito

I am writing unit tests for service layer in my spring application. Here is my service class @Service public class StubRequestService implements RequestService { @Autowired ...
3
votes
2answers
99 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
2answers
139 views

How to mock a builder with mockito

I have a builder: class Builder{ private String name; private String address; public Builder setName(String name){ this.name = name; return this; } public ...
3
votes
6answers
167 views

How to mock a javax.mail.Session

i need to mock a javax.mail.Session object in my unit tests. The class javax.mail.Session is marked final so Mockito is not able to create a mock. Does anyone have an idea how to fix this? Edit: My ...
3
votes
2answers
69 views

Using assertArrayEquals() with wildcards?

I want to test code that produces byte arrays used to send as UDP packets. Although I'm not able to reproduce every byte in my test (e.g. random bytes, timestamps), I'd like to test the bytes that I ...
3
votes
2answers
199 views

Unit Testing EJB 3.1

I am doing a small research on Unit Testing of EJB 3.1. At the end my goal is to produce a easy to use solution for Unit Testing EJB 3.1. I do not have much knowledge with big EJB implementations ...

1 2 3 4 5 6