Mocking and faking are ways to isolate code or components to ensure that unit tests run against the testable unit of code only without actually utilizing other components or dependencies of an application. Mocking differs from faking in that a mock can be inspected to assert the results of a test.

learn more… | top users | synonyms (3)

0
votes
2answers
34 views

How to return the argument of a mocked method?

Hi all how can I make it so in PHPUnit a mocked method returns its passed argument? E.g: $redirector->expects( $this->once() )->method('gotoUrl')->will( $this->returnValue($argument) ...
0
votes
1answer
34 views

Mocha expected at most once, invoked twice, but method is clearly invoked only once

I'm using Mocha for mock testing. Below is the relevant code: # test_player.rb should "not download the ppg more than once for a given year" do @durant.expects(:fetch_points_per_game).at_most_once ...
1
vote
0answers
60 views

ScalaMock 3. Mocking methods with function parameter

I would like to mock methods with a function parameter and a function parameter in combination with curried paramters like: trait Secured { def IsAuthenticated(f: AuthenticatedData => ...
0
votes
1answer
45 views

JMockit NullPointerException on mocked object in Expectations

Here is the relevant part of my test case: @NonStrict private StowServiceWrapper mockStowServiceWrapper; @NonStrict private IsItemStowableResponse mockIsItemStowableResponse; @NonStrict private ...
1
vote
2answers
127 views

How to mock dependencies in Intern tests [closed]

Is intern use requireJs to load the test? I'm using this approach to mock out dependencies for the module I wanna test, so I wonder if this will work with Intern as well.
0
votes
1answer
56 views

Python - How to unmock/reset mock during testing?

I'm using nosetests and in two separate files I have two tests. Both run fine when run individually, but when run together, the mock from the first test messes up the results in the second test. How ...
0
votes
1answer
163 views

using ControllerContext.RequestContext in a web api controller

I am try to integrate SagePayMvc.dll into a ASP.NET Web API project which requires ControllerContext.RequestContext to be passed in order to form the Notification Url. Currently I am experiencing ...
3
votes
2answers
156 views

Scala: Mocking and the Cake Pattern

I've been trying to adopt the Cake Pattern but I'm having difficulties adapting to this programming styles, especially where unit tests are concerned. Lets assume that I have the following business ...
0
votes
2answers
52 views

Use mock frameworks for something else then unit-tests?

Do mock frameworks are just supporting to write unit tests or are there any other cases where a developer would use them? Are there situations where they are useful outside the testing area?
1
vote
1answer
79 views

C++ Mock Frameworks: 'Generic' vs 'Declarative'

I'm recently learning a lot about Mocking Frameworks for C++, but there is one question which I couldn't solve so far: There seem to be 2 different types of mocking Frameworks available (at least for ...
0
votes
0answers
51 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
0answers
35 views

Mocking network packets from different IP addresses for java unit tests

I need to test java code that receives network packets from multiple IP addresses. How can I mock the system up in Java unit test?
1
vote
1answer
47 views

How can i check call arguments if they will change with unittest.mock

One of my classes accumulates values in a list, uses the list as an argument to a method on another object and deletes some of the values in this list. Something like element = element_source.get() ...
0
votes
2answers
612 views

Testing a Spring MVC controller method with Spring MockMvc* classes

I am trying to test the following Spring mvc controller method: @RequestMapping(value = "/preferences/email", method = RequestMethod.POST, produces = "text/html") public String ...
0
votes
1answer
95 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: ...
0
votes
1answer
27 views

From Real stdClass Object to Mock

I have a Soap WebService that returns StdClass Object with different properties. What i want to do is to create a Mock Object that simulates the StdClass returned by WebService. What i dont want to do ...
0
votes
1answer
28 views

rspec mock not getting called on belongs_to association

I'm trying to test my controller in rails with RSpec, but it's not calling one of the mocks I made and I'm not sure why. my model has a user class, and a game class, and a player class, which belongs ...
1
vote
2answers
42 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 ...
3
votes
1answer
67 views

Is it possible to capture parameters with Google Mock (gmock)?

I am planning on using Google Mock. I need to capture an object reference so that I can subsequently call some methods from that object. Does Google Mock have any capturing abilities? If not, what ...
0
votes
0answers
34 views

Mocking object gets in Django unittests

Edit: This didn't work initially as the imports used differing imports into the view, and into the mock. I used project.app.views.Model in the test mock, whereas in the import in the views.py was ...
0
votes
1answer
22 views

How can I mock a Non-DB-Model and let it return a given list on call

I have a CommentList class with a static method fetch. The problem is, that it is not an ActiveRecord Model, but it makes http calls to fetch data. class CommentList def self.fetch # http-foo ...
0
votes
1answer
82 views

Mock criteria count api grails/groovy

I have a problem while trying to unit test a service class api MyService.groovy public int myMethod() { def cr = MyDomain.createCriteria() def myDomainCount = cr.count { isNull("column1") ...
2
votes
2answers
53 views

PHPUNIT mock with at() feature works weird

here is the following code sample <?php interface iFS { public function read(); public function write($data); } class MyClass { protected $_fs = null; public function ...
0
votes
2answers
65 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
2answers
48 views

Is it possible to mock or overload a direct reference to Boost::Filesystem(.hpp)?

I'm attempting to help design some unit tests around controllers in a Qt C++ application. To be frank, I have two large drawbacks. One, my testing background is heavily based on .NET projects, so ...
0
votes
2answers
64 views

Embedded python interpreter, generate stub source code for autocompletion

I have an application that embeds python and exposes its internal object model as python objects/classes. For autocompletion/scripting purposes I'd like to extract a mock of the inernal object model, ...
1
vote
1answer
55 views

PHPUnit mock all methods of an abstract class

I have a PHPUnit test case directly deriving from PHPUnit_Framework_TestCase. In a test in this class I need to get a mock for some service object. This service object is of a type defined by an ...
0
votes
3answers
461 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
0answers
29 views

MockService SoapUi Pro return response based on condition

I would like to add a condition to my mockservice in SoapUI Pro. At the moment there are two possible responses, returning either true or false. Based on the content of <TAG> ...
1
vote
1answer
80 views

Can you set up recursive mocks in foq?

I'd let to mock an IBus with Foq. One of the methods on the IBus is OpenPublishChannel, which returns an IPublishChannel. IPublishChannel in turn has a Bus property that returns the parent IBus. My ...
0
votes
2answers
74 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 ...
2
votes
1answer
61 views

Are there any mocking frameworks for Mono??? I'm floored that I can't seem to find one

I'm just looking for a definitive answer on this: are there any mocking frameworks that work with Mono, like Moq or RhinoMocks??? Yes, I realize I can do manual mocks, but I'm talking about something ...
1
vote
1answer
46 views

Mocking generics that implement multiple interfaces

Here's my class implementation where the generic is implementing two interfaces... public class ClassA<TGeneric> : where TGeneric: IInterfaceA, IInterfaceB I want to Mock ClassA. However, I ...
0
votes
1answer
177 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() { ...
2
votes
1answer
71 views

Python Mocking a method from an imported module

I just want to verify that I am doing this in a sensible way in Python 2.7.3 And I am totally open to more pythonic or supported ways to approach this. What I want to do is mock a function in a ...
2
votes
1answer
250 views

Play framework - unit testing controllers with dependencies

I am in a process of writing web application that uses Play framework (2.1.1 version). I wrote my first, very simple, controller and I wanted to unit test it. The thing is, because Play controllers ...
2
votes
1answer
73 views

Moq - Linq expression in repository - Specify expression in setup

I have a method on my interface that looks like: T GetSingle(Expression<Func<T, bool>> criteria); I'm trying to mock the setup something like this (I realise this isn't working): ...
0
votes
2answers
58 views

How to mock Pusher with RSpec in Ruby?

Currently using Pusher and RSpec. Pusher.should_receive( :trigger ).with( 'message', { :data => '12345' }) This would work, except the call is Pusher[ 'channel-id' ].trigger... How to mock this ...
1
vote
1answer
97 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 ...
0
votes
3answers
240 views

Grails 2.1 Unit Testing Command Object mockForConstraintsTests not working?

I have used manually written as well as Grails generated Unit tests for this command object: package myapp @grails.validation.Validateable class SearchCommand { String basisBuild ...
1
vote
2answers
33 views

Asserting mocked calls to __iter__() method

from mock import MagicMock, call m = MagicMock() m.foo() for i in m: print m m.bar() print m.mock_calls [call.foo(), call.__iter__(), call.bar()] [call.foo(), call.__iter__(), call.bar()] == ...
0
votes
1answer
47 views

PHPUnit mocks - assert method called

i'm new to phpunit and have read the documentation on mock objects but it isn't very clear. I am trying to write a simple test that asserts a method within a class is called. With the following code, ...
0
votes
1answer
26 views

is this generic/non-generic combo repository example mockable?

I read that one of the main reasons for using the unit of work/repository pattern is so that your data access layer can be mocked during unit testing. If that is true then making a repository like ...
0
votes
0answers
37 views

How to correctly test http methods in android? (Rest)

I've a class that handles Rest WebServices using httpclient in Android (GET, POST, PUT and DELETE Methods) Beside, there are wrapper classes that uses this client. I need to add unit test for these, ...
0
votes
0answers
38 views

How to test final socket output in multiple MDB/JMS flow?

I have a following flow: Send JMS message to queue, which is being listened by MDB A. MDB A sends reply to another queue, which is being listened by MDB B. Based on contents of the messaged MDB B ...
0
votes
1answer
104 views

Qunit Assert mockajax response

To test the Jquery Ajax reponse, I am using mock ajax with Qunit. I have to assert the Mock Ajax reponse, but in my test case,Assert statements are running first and then i am getting response from ...
1
vote
1answer
43 views

Mocking Http-503 for a web service

I would like to mock a web service response for an HTTP 503 (Error 503--Service Unavailable) when The server is unable to handle the request due to a temporary overloading or maintenance of the ...
1
vote
2answers
98 views

Python mock, django and requests

So, I've just started using mock with a Django project. I'm trying to mock out part of a view which makes a request to confirm with a remote server that a request was genuine (a form of verification ...
1
vote
1answer
67 views

How can you Mock an Interface with Spring's DI Container without registering the Class Type?

I am trying to decouple existing code to be able to unit test it. I have introduced interfaces to remove the dependency on UI objects.The problem is that the Spring container's RegisterComponent < ...
0
votes
1answer
33 views

Patch - How to check that a patched class's instance called a class function?

I'm trying to patch a class, have a function under test create an instance of the patched class, have that instance call a class function, then I want to test that that class function was called. How ...

1 2 3 4 5 66