Tagged Questions
0
votes
0answers
18 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
vote
3answers
46 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 ...
1
vote
4answers
47 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();
...
0
votes
1answer
51 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
2answers
36 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
51 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
28 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 . ...
1
vote
1answer
43 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
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
43 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
25 views
Mock library for Python, return value only once in mocked function?
Mocking a method with mock is simple enough, for instance, like this:
o.get_idlist = mock.Mock(return_value=[1])
However, that will make get_idlist() return [1] every time. Is there a way to ...
0
votes
1answer
35 views
Mocking IDataRecord
I'm trying to mock an IDataRecord using Moq.
The mock was created as follows:
Mock<IDataRecord> mockDataRecord = new Mock<IDataRecord>();
The line under test is:
DateTime timestamp = ...
-6
votes
1answer
40 views
Why are there no available downloads for pyfakefs? [closed]
pyfakefs mocks Python's filesystem modules, useful for testing. It seems to be quite mature, being "used in over 900 Google Python tests". However, there doesn't seem to be a convenient way to ...
0
votes
1answer
27 views
Creating domain objects when testing a grails service
I am trying to create unit tests for testing my grails services. I have the following test
@TestFor(ActivityProcessorService)
@Mock([ActivityProcessorService, Activity])
class ...
0
votes
1answer
40 views
How to test method that uses external package to interact with DB
I am trying to test a function, which is part of the business logic layer of a struts application. I am facing problem because the code is dependent on external functions in a organization wide used ...
0
votes
1answer
57 views
How to unit test the rest call using easy mock
How to unit test the below method with the EasyMock. I tried to mock WebResource but it is returning me a NullPointerException.
public void connect()
{
Client client = setUpClient();
...
0
votes
0answers
7 views
RESX Resource IO Issue from unit test
The Action method that i have is something like this -
public ActionResult Index(Guid id)
{
.....
string resourseValue = Resources.UIResource.ViewName;
.....
}
When i am trying to unit ...
0
votes
1answer
24 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 ...
2
votes
2answers
97 views
How to mock dependencies in Intern tests
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
27 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 ...
-4
votes
0answers
46 views
How can I use mocks with Django? [closed]
I'm trying to use a mock with Django to make some unit testing. I want to test my models but I can't find how. Do you have an idea?
0
votes
2answers
43 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
57 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
25 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?
0
votes
2answers
179 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
0answers
40 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: ...
2
votes
1answer
52 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
21 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
2answers
38 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 ...
1
vote
1answer
42 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
2answers
48 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
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
105 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 ...
0
votes
2answers
127 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
32 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
21 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 ...
1
vote
2answers
57 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
75 views
How can I stub/mock non-pointer member variables in C++?
Many websites on unit testing say to extract an interface and code to the interface (which makes sense), but that requires using polymorphism via pointers. Is it possible to accomplish this without ...
2
votes
2answers
120 views
C# Unit Test - To mock, stub or use explicit implementation
This has been discussed a number of times before, but the merits in the below examples aren't obvious, so please bear with me.
I'm trying to decide whether to use mock implementations in my unit ...
1
vote
2answers
28 views
Patch - Patching the class introduces an extra parameter?
First time using patch. I've tried to patch one of my classes for testing. Without the patch attempting to run gets past the test function definition, but with the patch the test function definition ...
0
votes
1answer
53 views
How do I test a class using JUnit 4 that extends an abstract class?
I am trying to write a unit test for a java class that is extending an abstract class? The java class looks sort of like:
public class XYZFilter extends XYZDataFilter{
@Override
protected ...
0
votes
1answer
34 views
How to force an exception in django in order to test it in django
I've really searched for how to patch Whatever.objects.get_or_create, but I can't get any suggestion or idea how to do it.
Well, my problem is that I have something like this:
def ...
0
votes
2answers
84 views
Mocking data access Layer Rhino mock
How can i mock data access layer using Rhino mocks
I have the following classes:
public interface IDataAccess
{
int ExecuteNoneQuery(SqlConnection connection, string storedProcedureName,
...
3
votes
1answer
76 views
How do I unit test a class with nasty dependencies without a mock framework?
I am working in a legacy C++ codebase and I want to test some methods on a class, DependsOnUgly, that has a dependency which is not easily broken on a big class (Ugly) with lots of external ...
1
vote
1answer
36 views
DotCover shows 0% for virtual method mock
I'm using DotCover to check the unit test Coverage. Inside one of the method I return results from active directory in SearchResult however, I mocked the class but DotCover displays 0%
public virtual ...
0
votes
1answer
107 views
mocking objects in c#.net and write test cases [closed]
I am planing to implement a mini project which have couple of service providers to send emails on my application : gmail, yahoo, smtp etc
so now I am planing to keep an interface class which ...
0
votes
1answer
29 views
Rhino Mock, Mock list of interface
How can i Mock list of object in for loop
Here is the code:`
public class SearchResult<T>
{
private readonly ISearcher<T> _searcher;
private readonly ...
0
votes
1answer
34 views
How to stub a function and define equality comparer for a Reference Type parameter
I basically want to stub a function, but define my own equality comparer for a Reference Type parameter.
I want to stub a function to return data. I want the parameter of the method to compare by a ...
1
vote
2answers
39 views
how to write unit test for this class in JUnit
//how to write unit test for this class in JUnit......
package com.emr.common.helper;
import java.util.Random;
public class RandomTextGenerator {
public static String getAutogenerateText()
...
0
votes
2answers
28 views
Trying to mock method in Object gives 'AttributeError'
I am trying to test a method in an already existing class. Within inputStreamThread method in the Foo.crawler.crawlerapp.CrawlerApp class the method addUrl is called.
inputStreamThread reads from ...





