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)

3
votes
2answers
73 views

How to design for mockability when there is a dependency?

I have a method inside which it calls the .NET XDocument.Load() method to load the xml data from a url. I'd like to make my class unit testable. So how to make that call mockable/unit testable? ...
0
votes
2answers
81 views

Unit testing domain objects with internal constructors and private setters

I have defined a Person class in a project called Tools.Client, which is a wrapper around a web service API. Person is constructed with the XML returned by the service. public class Person { ...
2
votes
1answer
315 views

ReferenceError: inject is not defined

When I run the SpecRunner HTML file I get this error. Looking around, this is due to angular-mocks.js not being referenced. In my case it is being referenced. SpecRunner.html: <link ...
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 ...
1
vote
0answers
20 views

Declaring actions vs. expectations in GoogleMock

After reading through documentation on google mock framework, my initial impression is that actions are used to define simple functions for mock objects so that a class using those objects can be more ...
2
votes
1answer
51 views

Mock an abstract base class using EasyMock

I have an abstract base class (parent) and a derived class (child) public class child extend parent{ public void child(...) { super(..) } } public abstract class parent{ . . ...
0
votes
3answers
78 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 ...
1
vote
2answers
74 views

Test that a method in an anonymous class instance gets called

Introduction: Consider following simplified unit test: @Test public void testClosingStreamFunc() throws Exception { boolean closeCalled = false; InputStream stream = new InputStream() { ...
1
vote
1answer
127 views

SoapUI : Mock service that not returning response

Is there possible create SoapUI Mock service that not return response but it is just closing connection?
1
vote
2answers
92 views

Is unit testing needed in addition to integration testing of DB, filesystem, etc.?

At my office we have a dispute regarding the necessity of unit tests in addition to integration tests for the classes that have the main responsibility of interacting with a filesystem (DB, etc). ...
0
votes
1answer
164 views

Implementing mock dataservice on breezejs (query fails)

i'm trying to implement mock dataservice. I'm registering new data type, creating a new entity with init data, but on executing the query i'm getting an error:"There is no metadata available for this ...
0
votes
1answer
82 views

how to mock third party classes in fitnesse

I have written one fixture: !define TEST_SYSTEM {slim} !path E:\eclipse\eclipse_workspace\FitnesseDemo\bin Calculator Example |com.example.qc.fixture.CalcFixture| |pad1|pad2|margin1|margin2|get ...
1
vote
1answer
60 views

Functional Test - Mock service does not persist in service container

I am hoping someone can shed some light on this issue I am facing. [PROBLEM] I have mocked out doctrine.orm.default_entity_manager service in my functional unit test. I inject this into the client ...
1
vote
0answers
21 views

Mocking or Stubbing mtime for File::Stat

My object GETs a file over HTTP. It does so, using the If-Modified-Since header. If the files has not been modified since the time in the header a Not Modified response will be returned and the file ...
3
votes
2answers
60 views

How to mock a full method?

It is possible to mock a full method? Or would I have to mock every single service call inside that method? Here is a (silly) example: class Foo { void update() { service1.do(); ...
0
votes
1answer
64 views

How to manage cookies with HttpClient when using a mocking HttpMessageHandler

I have a unit test that calls into a class library by passing in HttpRequestMessage instances and receiving HttpResponseMessages instances back. It's very similar to testing a WebApi ApiController in ...
5
votes
3answers
196 views

Delphi-Mocks: Mocking a class with parameters in the constructor

I'm starting to use the Delphi-Mocks framework and am having trouble with mocking a class that has parameters in the constructor. The class function "Create" for TMock does not allow parameters. If ...
0
votes
1answer
34 views

How to patch 'open' from an imported module using Mock

I am writing some unit tests for a module I have. I need to patch open so when the functions inside the tested module calls open the mock is used instead of the real open. This code works but I think ...
1
vote
0answers
34 views

HTTPTransportError - Unexpected WS call using the mocked proxy object

I'm stuck trying to run a unit test that makes a web service request. I'm mocking the proxy object of the jax-ws request in my JUnit test using EasyMock. I have defined the bean using DI in my ...
1
vote
1answer
259 views

Using Spock to stub both Gorm and other methods in a Grails domain class

Sorry if this is a newbie question but I would really appreciate any insights the community could offer with regard to a problem I am having with stubbing the following method which I have in a Grails ...
1
vote
1answer
60 views

Mocking an object with internal dependencies in PHPUnit

I am kind of new to testing and I would like to understand how testing is implemented in a real world scenario. For instance, There is this code which implements an internal framework, and employs ...
0
votes
0answers
28 views

Mocking a BPM 'split n' in soapui

I have a BPM process that executes a web service invocation step 'n' times and I need to do the same for the corresponding soapui test step inside a test case. To illustrate: BPM process invoked ...
1
vote
3answers
291 views

Unit-testing a controller that uses $http

I have a simple controller and the first thing I need it to do is assign a value to scope. function TestCtrl($scope, $http) { $scope.listForms = 'some list'; } The following test for the ...
0
votes
1answer
27 views

PHPUnit Stubbing consecutive calls

I have got a problem with a class, which returns unpredictable values and unit testing a method which calls that functions. So I'm going to change the return of a method. I'm not able to mock that ...
1
vote
1answer
61 views

Mock object for Authentication in Spring Security

Now for the unit test I need the authenticate method to just pretend it worked correctly, in my case do nothing, so I can test if the method itself does the expected work (Authentication is tested ...
-1
votes
1answer
51 views

phpunit mock a method that should return an exception

I have a method in a class that parses some xml. If it finds the tag < status >failure< /status >, it returns an exception. I want to build a unittest that checks this method does return an ...
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
1answer
82 views

GoogleTest Expect call fail for the mock method

I am new to the GTEST, just understanding the how the Mock works, i tried to write the simple program Foo.h and FooDisplay.h ( which needs the Foo in the constructor), also MockFoo.cpp ( which is the ...
1
vote
2answers
165 views

How can I mock a repository and unit of work pattern in Entity Framework?

I am new in Moq and Unit Testing. I want to test my Repository and Unit of Work pattern with entity framework 5. But I don't understand where and how can I start. My Repository Interface : public ...
0
votes
1answer
94 views

Patching(mocking) forms form in django tests

I tried to mock form with mock.patch and can`t. I have this code forms.py class CreatePostForm(object): pass views.py: from forms import CreatePostForm def doit(): print CreatePostForm() ...
0
votes
1answer
66 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
71 views

unit testing complex model with nested validation

I'm using fluentvalidation to do model validation. I have a class with a several nested classes or collections of classes, each with their own IValidator. Initially I was doing something like this ...
4
votes
3answers
120 views

How does a mocking framework work?

Most mocking frameworks only are capable of mocking interfaces, some can mock virtual methods of classes. Some Java mocking frameworks are even capable of mocking static classes. E.g. Rhino mock: ...
0
votes
0answers
79 views

Mocking Email component in CakePHP Call to a member function on a non-object

I'm trying to mock an email component in a model, but after the first function, Cake gives me an error: Error: Call to a member function to() on a non-object Here's my test class: <?php ...
1
vote
1answer
70 views

How can I create a class method with multiple dots?

In python I want to create a (class) method with multiple dots, in order to make tests regarding xmlrpc methods, which can have method names with many dots. When I try just the following: class ...
0
votes
0answers
55 views

EasyMock or Mockito? [closed]

I have seen many posts for recommendations. Before down voting please read question carefully. The posts I am seeing are 2 yrs old on stackoverflow. I want to know in todays date which is best testing ...
0
votes
1answer
107 views

Grails 2.1.x Controller Unit Testing with services

Attempting to unit test a Grails 2.1.x controller that calls a template to show a list of history items with a status. This controller works fine in manual testing but were attempting to automate ...
0
votes
1answer
66 views

Cannot determine argument specifications to use

I'm having a problem with NSubstitute. I have this short code: ReportingCycleDeliveryRepository .When(f => f.Add(Arg.Any<ReportingCycleDelivery>())) .Do(x => ...
0
votes
1answer
84 views

Mocking Android's LocationProvider

Currently I'm testing my android application's LocationProvider by mocking some GPS data from a file in order to temporarily simulate a movement on a real device. Also, I'd like to switch from my ...
-2
votes
3answers
191 views

How to write JUNIT test case for mocking?

I have the method similar to following structure. method1(Object obj,byte[] myarray) { mymanager.dbcall1(); mymanager2.dbcall2(); } Now I want to write the JUNIT test case which can ...
0
votes
0answers
62 views

How to mock python module in unittest

I have a problem when mocking in unittest. #!/usr/bin/env python import sys sys.modules["foo.Bar"] = __import__("mock_bar") import foo.Bar print foo.Bar.__name__ I've got an ImportError exception ...
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 = ...
0
votes
1answer
405 views

Mock location on android 4.2.2 (Nexus 4)

I am looking for the "mock locations" option on android 4.2.2 (Nexus 4) but I was unable to find it. Usually it can be found at "Preferences => Applications => Devlopment / Mock Locations" I searched ...
1
vote
1answer
59 views

Fake module used by other modules

Is any possibility to fake module, which is used(import) by other modules that I use in my tests? Example: This is my test.py: import unittest import module1 //test code here module1.some_method() ...
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
1answer
91 views

How to mock any_instance in a scope with RSpec?

I'm trying to write a spec which expects a method to be called on all instances in a scope. Couldn't find a elegant way to do it. This is a simplified representation of my code: class MyClass < ...
1
vote
1answer
83 views

phpunit mock web service(not WSDL)

I have a small problem which I think is quite simple to solve for experienced PHPUnit users. I'm working with ZF2. I'm working with a web service that returns plain text(CSV). I'd like to unit test ...
2
votes
2answers
56 views

Are void return methods that change the state of their argument an anti-pattern?

Are methods that return void but change the state of their arguments (ie. provide a hidden or implicit return value) generally a bad practice? I find them difficult to mock, which suggests they are ...
3
votes
1answer
38 views

Moq - Is it possible to specify in a Setup the Verify criteria (e.g. Times called)?

If you need to Setup a return value, as well as Verify how many times the expression was called, can you do this in one statement? From what I can gather, Moq's Setup(SomeExpression).Verifiable() ...

1 3 4 5 6 7 64