Tagged Questions

2
votes
5answers
127 views

Need ideas for a TDD Approach

We have just released a re-written(for the 3rd time) module for our proprietary system. This module, which we call the Load Manager, is by far the most complicated of all the modules in our system to …
0
votes
2answers
35 views

Mocking Framework with C# 4.0 Support?

Anybody know of a mocking framework that supports C# 4.0? Doesn't matter which one ATM, just need something that will work.
3
votes
3answers
52 views

How to unit test the default case of an enum based switch statement

I have a switch statement in a factory that returns a command based on the value of the enum passed in. Something like: public ICommand Create(EnumType enumType) { switch (enumType) { …
1
vote
2answers
54 views

Mocking a Static Class

I have a static class that wraps some native methods from winspool: public static class WinSpool { [DllImport("winspool.drv")] public static extern int OpenPrinter(string pPrinterName, out …
1
vote
1answer
84 views

Mock framework for C++ [closed]

Possible Duplicate: Are there any good C++ Mock object frameworks? I am hoping to develop a C++ project using TDD. Please, tell me what is the best Mock Framework available to c++? And Why?
0
votes
0answers
20 views

any sane way to do mocking in Grails?

Hi, I have a Groovy class Test and I want to mock foo() such that (for all instances) it returns bar() + 1 class Test { void def foo() {1} void def bar() {1} void def baz() {1} } The normal …
0
votes
1answer
28 views

Rhino mocks - does this test look sensible?

I have just crafted the following test using Rhino mocks, but I am a complete novice. Does my test look valid and make sense to those more experienced with mocking? I am a a little confused that I …
6
votes
8answers
178 views

Use of Mocks in Tests

I just started using mock objects (using Java's mockito) in my tests recently. Needless to say, they simplified the set-up part of the tests, and along with Dependency Injection, I would argue it …
7
votes
7answers
208 views

What are the real-world pros and cons of each of the major mocking frameworks?

see also "What should I consider when choosing a mocking framework for .Net" I'm trying to decide on a mocking framework to use on a .NET project I've recently embarked on. I'd like to speed …
2
votes
2answers
25 views

How to find the value that has been passed to a method on my mocked (Moq or Rhino Mocks) interface?

I am using Moq - but could easily swap to another mock framework if needed. I have a interface defined: public interface IBaseEngineManagerImp { void SetClientCallbackSender(IClientCallbackSender …
5
votes
10answers
163 views

Which objects to mock when doing TDD

When creating methods, should every object instantiated inside that method be passed in as a parameter so that those objects can be mocked in our unit tests? We have a lot of methods here at work …
1
vote
2answers
21 views

How to verify that method argument’s property values are set when mocking methods with Moq?

Not sure if it has been asked before, here is the question. Code first: public class Customer { public string Password { get; set; } public string PasswordHash { get; set; } } …
1
vote
3answers
18 views

Save object in debug and than use it as stub in tests.

My application connects to db and gets tree of categories from here. In debug regime I can see this big tree object and I just thought of ability to save this object somewhere on disk to use in test …
4
votes
1answer
57 views

How to verify a certain javascript function has been called during unit testing

Hi all: I'm using JsTestDriver and a bit of Jack (only when needed). Does anyone know how to verify that a javascript function has been called during unit testing? E.g. function MainFunction() { …
1
vote
4answers
48 views

Rhino.Mocks - Stub one method of class and let other real methods use this stubbed one

I have TimeMachine class which provides me current date/time values. The class looks like this: public class TimeMachine { public virtual DateTime GetCurrentDateTime(){ return DateTime.Now; }; …

1 2 3 4 5 26 next
15 30 50 per page