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 ...
0
votes
0answers
23 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
1answer
14 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(); ...
0
votes
1answer
34 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
26 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
3answers
51 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
2answers
82 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
90 views

Best practice TDD - Java Object Validation and clean code

Suppose a Java class called Car, whose objects are initialized through a static factory: public class Car { private String name; private Car(String name){//...} public static Car ...
1
vote
1answer
24 views

Mocking methods of the object under test

Lately I've been writing some objects wherein the behavior of one method sometimes consists of calling another one of its own methods under certain conditions. To test this, I've been mocking the ...
1
vote
3answers
52 views

What's the best practice in organizing test methods that cover steps of a behavior?

I have a FileExtractor class which a Start method which does some steps. I've created a test class called "WhenExtractingInvalidFile.cs" within my folder called "FileExtractorTests" and added some ...
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
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 ...
0
votes
1answer
36 views

JavaScript TDD with regards to code coverage and mocking

I am looking for advice on TDD with JavaScript. I'm using VS 2010\2012 with Qunit and would like to know if it is best practice to: use a mocking framework like Qmock or other? use a code coverage ...
0
votes
1answer
78 views

Rspec testing instance method which require other methods return (stubbing?)

I want those already methods to be tested, but everything I try, doesn't seem to fit with best practices nor do it work. May be somebody can support me with this? CODE To be tested def ...
3
votes
1answer
92 views

Understanding stubs, fakes and mocks.

I have just started to read Professional Test Driven Development with C#: Developing Real World Applications with TDD I have a hard time understanding stubs, fakes and mocks. From what I understand ...
0
votes
1answer
52 views

Verify using Moq that only these two method calls where called, and nothing else

I am using Moq for verifications and unit-testing. I would like to verify that say a method 'Add' was called with parameter 1, and parameter 5, and not called for any other value except for those. ...
2
votes
1answer
93 views

Testing Approach for XDocument.Load() and XDocument.Save()

I am working with XDocument within an MVC4 Web API application in Visual Studio 2010 and am unsure about the testing strategy. Most of my unit tests make use of an in memory XDocument, which works ...
0
votes
2answers
43 views

How to make tests with find and date conditions?

I'm trying to develop some tests for a method which is responsible for retrieve some users created after some date. I don't know how to mock tests for it. The method is the following: def user_list ...
3
votes
1answer
159 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 ...
10
votes
5answers
181 views

How to use unit tests in projects with many levels of indirection

I was looking over a fairly modern project created with a big emphasis on unit testing. In accordance with old adage "every problem in object oriented programming can be solved by introducing new ...
0
votes
0answers
32 views

TypeLoadException when mocking IDbSet [duplicate]

Possible Duplicate: How to mock IDbSet with Rhino Mocks I am trying to write unit tests for my repository but am running into an exception I can't really understand. I'll drop the ...
2
votes
2answers
115 views

Is the use of Auto Mocking containers good or bad practice?

I've recently been working on a project that has started to get fairly dependency heavy and have been exploring the idea of using an AutoMocking container to clean up my tests a bit and make them less ...
1
vote
1answer
69 views

What I need to use: aggregation or composition in TDD?

I'm using TDD. I need to use raw SQL queries in my system. TDD suggests that I need to test only business logic (all tests of database, mail sending or file system is a integration tests). So, I place ...
0
votes
1answer
41 views

moq- why can't operate function with default parameter

I am trying to make a unit test on a very simple interface. my interface is: public interface Interface1 { string retStr(string dd); string retStr2(string dd,string fff); } ...
0
votes
2answers
78 views

How to mock Kernel.open or open-uri without calling Kernel explicitly?

How to mock this call in RSpec? require 'open-uri' class FileFoo < ActiveRecord::Base def download image_url open("tmp/#{file}", 'wb') do |file| file << open(image_url).read ...
1
vote
2answers
96 views

Do contract tests necessary imply stubs?

Recently, I've been reading a lot of articles (mostly from J.B. Rainsberger) about contract and collaborative tests. In order to get it into it, I've started a small project. From my understanding, ...
0
votes
0answers
67 views

HTTP Mocks - is there a dumping ground for useful API calls?

I'm getting pretty deep into nock for Node.js and absolutely love it for mocking HTTP API requests. The typical workflow is to start recording, then copy-paste the JSON it outputs into multiple ...
4
votes
4answers
139 views

Better way to setup test with Moq

I've been mocking using moq for a while and always find myself doing things like this: Assume the behavior I want to test is that classUnderTest.DoSomething() calls l.Fatal("My test message") once. ...
0
votes
1answer
134 views

Unittesting and mocking nodeJS net/Socket events

I'm TDD'ing a script that connects to a Socket from the net module. For testing I use mocha and for mocking sinonjs Now I'm really having problem mocking/faking the data-emitting of the Socket. ...
1
vote
1answer
317 views

Methods for Adding Data to Mock DBs in C# Unit Tests

This post is meant to be more a discussion-starter, as I am somewhat new to unit testing and TDD. I am currently writing some unit tests for a .NET process that interacts with several databases, ...
5
votes
1answer
282 views

Using mocks with angular's scenario runner

In angular unit tests, it's possible to create mocks and inject them into controllers. I would like to do the same in e2e tests. Is this possible? I'm looking around but can't find much. I think the ...
1
vote
2answers
238 views

Mocking static functions using TypeMock

I am trying to mock static functions in my project. I am unable to do this using Rhynomocks hence trying to mock static functions using Typemock. They say it is possbile to mock static function using ...
3
votes
2answers
104 views

How do I mock %x in a test?

I've got something like this : class Something def some_method %x{xyz} end end And in the spec : describe Something do describe "#some_method" do it "should execute xyz command in a ...
1
vote
1answer
105 views

Testing repository with DbContext - mocking issue concerning IDbSet

I am trying to test a repository that uses DbContext The issue I am running into is that DbCOntext wants to return DbSet for certain types I can't even mock IDbSet as it has a PRIVATE CTOR?!?!?! ...
1
vote
0answers
158 views

Unit testing, IoC, DI and mocking objects within a WCF service

I have a WCF service (INTWCF) that consumes another WCF service (EXTWCF). EXTWCF exposes 5 operations, will be hosted on an external app server (in a DMZ), and implements message and transport level ...
0
votes
1answer
148 views

mocking a method with an anonymous type argument

I have the following code: var connector = new Mock<IConector>(); connector .Setup(cn => cn.listar("FetchEstandar", new Estandar(), new {Id = 1})) .Returns(new List<Estandar>{ ...
1
vote
1answer
139 views

How to mock database api?

Connecting database (even if it's an in-memory one) slows down my unittests (currently it took more than 5mins). So I'm considering mocking the database api. With the real database api, if there's ...
3
votes
1answer
411 views

Mocking vs. Spying in mocking frameworks

In mocking frameworks, you can mock an object or spy on it. What's the difference between the two and when would/should I use one over the other? Looking at mockito, for example, I see similar things ...
0
votes
1answer
254 views

Mocking mongoskin in node.js application

As I try to follow the TDD way of development, I still struggle to find out how one can mock certain stuff in JavaScript. I am used to mocking in Java with Mockito and Spring (e.g. inject a mongo mock ...
0
votes
1answer
60 views

How would this unit test translate to leveraging a mocking framework?

I'm trying to practice unit testing in the TDD way so I created a set of interfaces that I thought could be tested somewhat independently. I'm not sure I succeeded but I'm now at the point where I'm ...
0
votes
1answer
199 views

why is this OCUnit test failing?

It's stepping into the ViewDidLoad of the main view controller, and hitting the line calling get all tweets, but I put a breakpoint in the getAllTweets of both the base and derived to see if it just ...
3
votes
1answer
225 views

TDD for Windows Store app development without mocks

Has anyone come up with a good TDD setup for Windows Store App development? I'm so used to using mocking frameworks, but this is no-longer an option since dynamic assembly generation is missing in ...
3
votes
2answers
125 views

PHPUnit - Am I right in thinking I can't use mocks to test a dependency injection container?

I'm unit testing a Dependency Injection Container. At the most basic level, I'm testing that object graph creation is happening correctly. This uses a mixture of reflection and rules loaded into the ...
1
vote
1answer
393 views

How to mock class methods in objective c to use with TDD

I am using a third party framework to send data to a server. I am mocking that third party framework to isolate and test how my code interacts with it. This is to avoid to avoid waiting to get back ...
5
votes
2answers
408 views

Rhino Mocks - Do we really need stubs? [closed]

If it's possible to change mock behaviour in Rhino Mocks using mock.Stub().Return(), why do we need Stubs anyway? What do we lose by always using MockRepository.GenerateMock()? One big benefit of ...
0
votes
1answer
135 views

Should I initialize mock objects in setup or in the test case?

In unit testing with help of mock/fake objects, I wonder whether it's more preferable to initialize the mocks in SetUp or in the test method itself, if my test class contains methods that test the ...
2
votes
2answers
109 views

Meck and Test Driven Development workflow?

As to my knowledge, the typical workflow (W1) of TDD is as follows: Develop a test for a function; Run the test and watch it failing; Develop the function; Run the test again and watch it passing; ...
3
votes
3answers
138 views

Software testing: test remote API or just use a mock?

Let say your website need to call Twitter API to perform some tasks, you have several options: Only use mock Use mock in unit test, but use production api in integration test Only call production ...
2
votes
2answers
480 views

Mock (Moq) or override a readonly propery in a sealed class?

I have a situation where in MS Dynamics Crm it returns some objects using sealed classes and readonly properties (I can only presume using internal constructors or internal property sets). And these ...
3
votes
2answers
218 views

Mocking Guid.NewGuid()

Suppose I have the following entity: public class User { public int Id { get; set; } public string Username { get; set; } public Guid UserGuid { get; set; } public Guid ...

1 2 3 4 5