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 ...
1
vote
1answer
38 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 ...
0
votes
1answer
66 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; ...
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 ...
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 ...
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
0answers
42 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 ...
0
votes
1answer
54 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
2answers
36 views

Can I test code that uses introspection with Mockito?

I'm writing unit tests for a block of code that uses introspection; specifically it calls getDeclaredField() on the class I want to mock and tries to get the value of the field. Is there a way to ...
0
votes
2answers
47 views

Is there any tool that automates stubbing mock object responses? (using jmock, mockito or easy mock)

Question: Is there any tool that automates stubbing or mock object responses (using jmock, mockito or easy mock)? I have to write unit tests against a method that has dependencies on Amazon AWS ...
0
votes
3answers
245 views

Unable to mock Service class in Spring MVC Controller tests

I have a Spring 3.2 MVC application and am using the Spring MVC test framework to test GET and POST requests on the actions of my controllers. I am using Mockito to mock the Services but am finding ...
0
votes
2answers
55 views

Mocking python function based on input arguments

We have been using Mock for python for a while. Now, we have a situation in which we want to mock a function def foo(self, my_param): #do something here, assign something to my_result ...
0
votes
1answer
129 views

Play Framework 2.1.1 doesn't invoke mockito.

I'm trying to mock Model.finder to test my service, but it seems mockito isn't being injected for some reason and I cannot figure out why. Please help. public static Result deals() { ...
1
vote
1answer
62 views

using mockito with IntelliJ

I am new to Java, and my background mainly in .NET. I am trying to use mockito in a java project in IntelliJ. I am trying to follow this simple example: http://code.google.com/p/mockito/ so, I added ...
3
votes
3answers
89 views

Using Mockito to stub and execute methods for testing

I've asked a couple of jUnit and Mockito oriented questions recently and I'm still really struggling to get the hang of it. The tutorials are all for very simple examples, so I'm struggling to scale ...
3
votes
2answers
75 views

Best practices for verifying recursive method calls with Mockito

Consider this example class: public class Processor { private final Dependency dependency; public Processor(Dependency dependency) { this.dependency = dependency; } public void ...
2
votes
1answer
54 views

Creating / Mocking Android Context from a Java Application

I am trying to write a java program that uses some functions in an Android project. I don't need an Android device or emulator, I just need to use some of the functions of the Android project. The ...
1
vote
1answer
85 views

How do I change the default return value for Strings in Mockito?

This issue from 2010 hints at what I'm trying to do. I'm working on a unit test which exercises code that requires many mocked objects to do what it needs to do (testing HTML + PDF rendering). For ...
0
votes
1answer
61 views

Mockito Internals

I'm trying to understand how Mockito's internals function. So far the code has been difficult for me to understand, and I'm looking for a high-level survey of the fundamental workings of Mockito. ...
0
votes
2answers
190 views

Mocking DataSource for JdbcTemplate with Mockito

I'm trying to test a class in a Spring project. I would like to make as many changes as possible in the test class vs. the dao class so that I don't have to retest all sorts things because of a ...
0
votes
3answers
77 views

How to mock an exception when creating an instance of a new class using Mockito

Within a method, I have an exception being caught which I want to mock. I know how to mock an object to throw an exception using mock.doSomething(), but I need to throw a remote exception when a ...
0
votes
1answer
147 views

PowerMockito mock static method which throws exception

I have some static methods to mock using Mockito + PowerMock. Everything was correct until I tried to mock a static method which throws exception only (and do nothing else). My test class looks like ...
-1
votes
1answer
33 views

Access the original object instead of returning in powermock-mockito?

Lets take an example (Note I am using PowerMock - Mockito ) Class A { public void method1(Object obj) { } } Now , when we use mockito , we have the api's like ...
2
votes
4answers
119 views

How to mock Objects that are not passed as arguments

Imagine the following class public class ClassToBeTested{ private AnotherClass otherClass; public void methodToBeTested(){ otherClass = new AnotherClass(); String temp = ...
1
vote
3answers
99 views

Can I use a mock File in my Specs2 test for writing to a file? If so, How?

I've successfully used Specs2 to test serialization to a file, but the test uses a real file (written to /tmp/). I'd rather not touch disk just for a test. Is there a way to use a mocked file? def ...
0
votes
0answers
94 views

How to use PowerMock in Android projects?

I created a new Android test project. I downloaded powermock-mockito-junit-1-1.5.zip from https://code.google.com/p/powermock/downloads/list. I added all of the libraries to the test project's libs ...
0
votes
2answers
48 views

how to pass in multiple ArgumentMatchers to Mockito

I have two custom ArgumentMatchers and I'd like my mock to return a different value based on the argument value. Example: when(myMock.method(new ArgMatcher1()).thenReturn(false); ...
0
votes
2answers
72 views

Skip a Static method call in using mockito

I've a method in my main class which calls webservice. I want to skip that method calling, how can I do it in mockito. code is as below MainCLass{ int main(){ // I want to skip this method ...
4
votes
2answers
89 views

How to express MIT License when using Mockito in a Maven project

I'm using Mockito as a Maven dependency but am concerned about staying on the right side of the law when delivering this (proprietary) software to the customer. The MIT license doesn't seem to make it ...
0
votes
1answer
627 views

Mockito test a void method throws an exception

I have a method with a void return type. It can also throw a number of exceptions so I'd like to tests those exceptions being thrown. All attempts have failed with the same reason, The method when(T) ...
3
votes
1answer
108 views

Resetting Mockito Spy

I have a test class (based on TestNG) where I use Mockito.verify for a spy object. This works: public class Program { @Spy private TestObject testObject; @Test public void test1() ...
0
votes
1answer
533 views

Spring controller testing with Mockito

I'm trying to test My Spring controllers using Mockito, but I can't actually get how can I do that without making everything @Mock. Moreover test method returns me NullPointerException, as it can see ...
0
votes
0answers
89 views

Mockito argument captor and only()

I found, that whenever I use verify with only() - to check that invocation was just one time - ArgumentCaptor can't capture a value (I have null in value). For instance: verify(delegate, ...
3
votes
1answer
185 views

mockito mock vs. spy

What would be a use case for a use of a mockito spy? It seems to me that every spy use case can be handled with a mock, using callRealMethod. One difference I can see is if you want most method ...
0
votes
2answers
125 views

Use Mockito to mock some methods but not others

Is there any way, using Mockito, to mock some methods in a class, but not others? For example, in this (admittedly contrived) Stock class I want to mock the getPrice() and getQuantity() return values ...
0
votes
1answer
61 views

Using mocks to check that every object was analysed during iteration

I have no idea how to use mocks to check whether my method was invoked every time it was supposed to. I really don't know how to describe this problem, so I'll go ahead and just show my code: I have ...
2
votes
2answers
76 views

Variable output Mockito mocks

I have a class WidgetProcessor that has a dependency on another class, FizzChecker: public class FizzChecker { public boolean hasMoreBuzz() { // Sometimes returns true, sometimes returns ...
3
votes
3answers
266 views

Mockito: verify(mock) issue

Having real hard time trying to fix this issue could anyone help me please? I am clearly doing something fundamently wrong i have tried to verify each Mock object but it doesn't seem to work. ...
2
votes
1answer
130 views

Mocking a Class with constructor parameter

I need to mack a class for testing. The problem is i am using third party library where the class(UpdateManager) constructor takes 5 arguments i.e one java.sql.Connection and others are string. Inside ...
0
votes
1answer
36 views

Mocking Static Functions in Android

Is there any way I can Mock Static Function in Android using any Mocking Framework. Mockito can mock classes but is insuffiecient to mock Static functions. Any help will be highly appreciated. ...
1
vote
1answer
90 views

Mocking a concrete class - It's always null

I'm trying to mock a concrete Class using Mockito. However, it remains null in the service under test. My concrete class and Service: //My Concrete Class @Component("supporter") public class ...
1
vote
2answers
89 views

Checking consistency of multiple arguments using Mockito

I'm using Mockito to mock a class that has a method that looks something like this: setFoo(int offset, float[] floats) I want to be able verify that the values in the array (floats) are equal ...
1
vote
1answer
203 views

Mocking a Spy method with Mockito

I am writing a unit test for a FizzConfigurator class that looks like: public class FizzConfigurator { public void doFoo(String msg) { doWidget(msg, Config.ALWAYS); } public void ...
1
vote
3answers
93 views

How to mock a protected method of 3rd party code

Using Mockito I want to mock a property of a class so I can verify the output public class MyClass extends ThirdPartyFramework { Output goesHere; @Override protected setup(){ goesHere = ...
0
votes
1answer
482 views

Wanted but not invoked: Actually, there were zero interactions with this mock

Wanted but not invoked: provider.startAudit( "cn=dlakshman,cn=organizational users,o=system,cn=cordys,cn=Audit,o=vanenburg.com", "XMLS tore", "/Cordys/Test/test.log", ...
3
votes
1answer
162 views

Can you mock a non static method that calls a static method using Mockito?

I understand you can't mock static methods using mockito. But the method I am trying to mock is not static but it has a call to static methods in it. So can I mock this method? I get exception when ...
4
votes
1answer
349 views

How does mockito when() invocation work?

Given the following Mockito statement: when(mock.method()).thenReturn(someValue); How does Mockito go about creating a proxying something for a mock, given that the mock.method() statement will ...
0
votes
1answer
80 views

How to Method call anoither Method In Mock Object

I have object Panel inside is Methods protected Confirmation confim() { Confirmation confirmation = new Confirmation() { @Override public void onConfirm() { ...

1 2 3 4 5