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)

1
vote
1answer
15 views

How to test class with local connection to EJB

I am facing problem with testing class which has implemented some local connection to EJB in the constructor. This connection is used just inside the constructor and sets some private attributes of ...
0
votes
1answer
18 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
20 views

How do I mock or override Kernel.system?

How would be the correct way to mock or override the Kernel.system method so that when called with: system("some command") instead of executing the command, it executes some predefined code? I ...
0
votes
0answers
14 views

Use JMockit to test the concrete methods of an abstract class

I have an abstract base class that defines both concrete and abstract methods. I'm wondering if there's a way, using JMockit, to mock this type such that I can declare expectations for the abstract ...
0
votes
0answers
39 views

How to Stub a property without getting 3 exceptions?

RhinoMocks throws 3 exception when stubbing a simple readonly property. How to do it without getting the exceptions. public class ThirdPartyClass { public string Name { get; set; } public ...
0
votes
1answer
15 views

Patching os.path.isfile with side_effects not working in list comprehension

I'm attempting to excercise the following method in a Python class: def find_tests(self): tests_dir = glob.glob("tests/*") if not tests_dir: return None # Filter out only the ...
0
votes
0answers
21 views

Rhino Mock throws an exception when raising an event

Is it possible to simulate an event using Rhino Mocks framework without getting the exception below? A first chance exception of type 'System.NotSupportedException' occurred in Rhino.Mocks.dll - ...
0
votes
2answers
44 views

Mocking a list or List of Mock Objects

I have a class that uses a list of objects. How would you mock the list and why? Do you mock the List so that it returns Mock Objects when a list method is called. Or do you create an instance of the ...
0
votes
0answers
11 views

lean-and-mean CORBA mock server

We're planning to create a CORBA client on several platforms. For integration testing, it would be useful to be able to have a CORBA service to mock the 'real' thing. I'm currently looking into what ...
0
votes
0answers
11 views

jUnit Unexpected method call DAO Easymock check User

I have a problem with testing check user method from DAO. Here is the code: private UserService service; private UserDao mockDAO; @Before public void setUp(){ service=new UserService(); ...
1
vote
1answer
15 views

PHPUnit: Pass mock object as method parameter

Say I have the following class: class Document { private file; public function setFile(UploadedFile $file) { $this->file = $file; } public function getExt() { return ...
0
votes
1answer
36 views

Is it possible to mock classes that only expose Factory constructors?

Recently I had a need to mock the Timer class in test. This turned out to be an issue because Timer doesnt have any public default constructors because it uses all factory constructors. Is it possible ...
0
votes
1answer
21 views

Ruby on Rails Method Mocks in the Controller

I'm trying to mock a method call to an outside API inside one of my rails controllers (in this case, Instagram.get_access_token) and I'm having some trouble. As written, the code is still calling the ...
1
vote
0answers
35 views

Google Mock Destructor

I'm trying to become familiar with Google's mocking framework so I can more easily apply some TDD to my C++ development. I have the following interface: #include <string> class Symbol { ...
0
votes
0answers
7 views

How to write these integrations tests in Erlang?

I come from a Ruby background. I'm building a secret code game where a player tries to guess a randomly generated code. The player has 12 guesses. Clues as to how close the player's guess is are ...
0
votes
1answer
31 views

PowerMockito cannot mock constructor for FileInputStream

I am trying to mock the constructor for the FileInputStream and I have the following code: @RunWith(PowerMockRunner.class) @PrepareForTest(FileInputStream.class) public class DBUtilsTest { ...
0
votes
1answer
20 views

How do use EBean model inside main call from Play Framework2.1 Java

I would like to use EBean which comes with Play Framework 2.1 to setup some canned data. How when i run the main program I got some error like this. Exception in thread "main" ...
0
votes
0answers
11 views

Stubbing an external service in another process

I have an acceptance test suite that tests a WebAPI application, which in turn calls a third-party service. I want replace this service in test services with a stubbed version, which will have return ...
0
votes
0answers
19 views

Mocking for unit testing in objective c

I am caught up in a situation to mock up an api connection, in order to unit test a function as - I have api (api.h and api.m) class, this is talking to external apis.Say GetDataFromAPI() Now i have ...
-1
votes
0answers
42 views

Mocking a file system [closed]

I have to demonstrate a Proof of concept for a system which can handle around 100 TB of data. The constraint is that my lab does not have such a big hard drive. So for the POC I am going to have to ...
1
vote
2answers
14 views

How to test a mixed-in class method is being called with RSpec and Mocha?

I have a module: module MyModule def do_something # ... end end used by a class as follows: class MyCommand extend MyModule def self.execute # ... do_something end end How ...
0
votes
2answers
34 views

Mocking User Interface with RSpec Ruby

I've been looking on google for an answer but I can't seem to find the right answer. Basically I want to test out different User Interfaces(Console) in my engine. I was told to use Mock Classes, ...
0
votes
1answer
23 views

jUnit Unexpected method call DAO Easymock

I am newbie with mock testing. I want to test my DAO for users. Here is my code. private UserService service; private UserDAO mockDAO; @Before public void setUp(){ service=new UserService(); ...
1
vote
1answer
34 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 ...
1
vote
1answer
25 views

Fake android library for TDD

In order to use TDD when developing an android library which can be used in other apps, I decided I could get around the Stub! android.jar by creating copies of the classes which have higher ...
1
vote
1answer
26 views

Mockito: mock method parameter

I am using Mockito framework for testing. Now I am having the following problem. This is the class I want to test. @Service public class Parent{ @Autowired private Child child; public ...
0
votes
1answer
44 views

Sinon.js: Correct way to stub and analyze the return

I am writing a node app using coffeescript and doing some TDD using mocha.js. Please can someone point me correct way to write the test. What I want to do: Fake response of 'ra.do_get'and then call ...
1
vote
0answers
18 views

mock objects in python are not working on Jenkins?

I have a method, which needs to be mocked dependend on params. e.g.: mock_obj.method('param1').get() returns 10 mock_obj.method('param2').get() returns '~/Programs' etc. I do that using ...
0
votes
4answers
53 views

How can I create a simple api to test my mobile app without having to code the api out on a server?

I am making an android and iOS app that is going to interact with a server using an api that returns appropriate json responses. Someone else on my team is doing the server side work. I don't want to ...
0
votes
0answers
22 views

Restubbing same mock object on Mockito - Throws stack overflow error

I have an object stubbed for chained method calls ReceiptAcknowledgementExceptionDocumentImpl receiptAckExpDoc = PowerMockito ...
1
vote
3answers
48 views

Unit Testing Methods With File IO

I'm trying to get into the habit of writing unit tests, I've written a few before but they've usually been quite basic...I'd like to start making a move to TDD as i want to improve the quality of my ...
0
votes
1answer
11 views

stubbing chained methods in PowerMockito

I need to stub following call in PowerMockito. appAcceptedDoc .getAppointmentAccepted().getRequestResponse().getRequestersID() .getStringValue() I ...
0
votes
1answer
23 views

Google Mock Actual function call count doesn't match EXPECT_CALL

I am new to GMock and was trying my hand with this code, I also checked this link Actual function call count doesn't match EXPECT_CALL(*mock, display()) but was not able to get proper input. ...
0
votes
1answer
29 views

How to choose a Mock framework for web application running on Java EE and what is general important Mock framework? [closed]

I need your help in choosing mock framework. I'm a junior developer of web application in Java EE with Maven, Spring and Hibernate. We have many jUnit tests for DAO and service layer. Now I got a new ...
0
votes
1answer
42 views

is it better to name the subclass's mocked class same with subclass but in different .h in c++?

I have parent class: BaseClass; and it's sub class is SubClass, when I need one mocked subclass for the subclass, how to name it? I check someone's code sample, the subclass's mock class and ...
1
vote
4answers
49 views

What is the best way to unit test a method using ServerSocket class?

I have a such method: public boolean isFree(LdapPort port) { boolean result = false; try{ ServerSocket ss = new ServerSocket(port.getPortNumber()); ss.getLocalPort(); ...
-4
votes
0answers
42 views

Reflection and static classes [closed]

I try to intercept some OpenGL calls for testing my rendering classes. Reflection is used for replacing the OpenGL backend. I feel this class is badly written and I need advices for refactoring it. ...
1
vote
2answers
79 views

How to mock objects in Erlang using Meck?

Okay, I'm using Meck and I'm lost. My first language (that I've been writing for about 7 months) is Ruby, so I can't seem to wrap my brain around Meck mocking yet. I do get Ruby mocking though. ...
0
votes
1answer
56 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
39 views

How can I patch a function stored in a variable?

How can I make the following test to work? mymodule.py import requests http_methods = { "GET": requests.get, "POST": requests.post, "PUT": requests.put, "DELETE": requests.delete } ...
0
votes
1answer
60 views

Telerik JustMock throws exception when trying to mock SPServiceContext

I'm trying to write some unit tests for a Sharepoint 2010 Webpart that uses UserProfile manager. In order to mock UserProfileManager, I also need to mock SPServiceContext. When I try to assign my ...
0
votes
2answers
39 views

grails domain class not mocked

I'm trying to mock the Role class generated by shiro plugin in a Grails 2.2.1 app. When i'm runnint the unit test I'm getting this error that looks like the dynamics method are not added. This is the ...
0
votes
1answer
52 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
0answers
29 views

How to replace file-access references for a module under test

pyfakefs sounds very useful: it "was developed initially as a modest fake implementation of core Python modules to support moderately complex file system interactions, and was introduced Google-wide . ...
0
votes
0answers
31 views

PHPUnit Mock Database Connection Class

I'm adding unit tests to legacy codes in a MVC framework. I have a model class called DbConnection that initiate all the database connection, it looks like this: class DbConnection function ...
1
vote
1answer
44 views

use State base verification or Behavior base verification?

In my oponion,I tend to like the state ,The reason are: 1.state base verification is more simple and easiler to understand. 2.State base verification use the "AAA" model. 3.Behavior base verification ...
0
votes
3answers
64 views

Moq : async methods return null

If I try to mock a type containing an async method such as : interface Foo { Task<int> Bar(); } Then the mock's Bar method is returning null. I guess Moq is choosing ...
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
1answer
44 views

Is it necessary to create mocks for all table classes in every PHPUnit test method in Zend Framework 2?

I have a complete running application and want to write tests for it. I've started by the Application module and I am following the manual. Now I'm writing the "first controller test" and as expected ...
0
votes
1answer
76 views

Karma AngularJs Cancel/mock Timeout E2E

In angular I have a service object which animates page transitions. The problem is the animation is making karma/testacular E2E tests run very slowly. The code looks like the following: ...

1 2 3 4 5 64