Tagged Questions

2
votes
3answers
65 views

Is Typemock the only framework that can mock a Linq To SQL Table class?

I am trying to setup unit tests for my Linq To SQL code. My code uses the System.Data.Linq.Table class (generated by the designer). Because this class is sealed and the constructor is internal it is …
0
votes
2answers
17 views

Mock an out paramter with moq or rhino mock or something else

I tried with NMock2 but I get TypeLoadExceptions when trying to pass the mocks into the constructor, also I saw TypeMock can do that but it costs 80$
0
votes
0answers
3 views

TypeLoadException with NMock2

I get the TypeLoadException when calling new BulkInsertCandidatesService(userService, textReader, streamReader); [SetUp] public void SetUp() { mocks = new Mockery(); …
1
vote
2answers
36 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 …
1
vote
1answer
38 views

How do i mock a method that accepts a handle as an argument in OCMock?

I'm trying to mock a method that has the equivalent of the following signature: - (NSDictionary *) uploadValues:(BOOL)doSomething error:(NSError **)error I want it to return a small dictionary so …
5
votes
8answers
1k views

Mocking WebService consumed by a Biztalk Request-Response port

I'm using BizUnit to unit-tests my Biztalk orchestrations, but some orchestrations consume a WebService,and testing these seems more like integration testing than unit testing. I'm familiar with …
0
votes
2answers
433 views

Mocking attributes - C#

I use custom Attributes in a project and I would like to integrate them in my unit-tests. Now I use Rhino Mocks to create my mocks but I don't see a way to add my attributes (and there parameters) to …
1
vote
0answers
13 views

Testing internal/closed/sealed System.Data bits. TypeMock or Decorators or xxxxxx?

I'm writing some code that integrates pretty tightly with lots of internal and sealed classes inside of System.Data ( like DbDataRecord and ObjectStateEntry ) for an EntityFramework project I'm …
0
votes
2answers
65 views

GWT Mockito integration

I'm trying to set up and use Mockito into a GWT project, and I'm having trouble using it on the client side (in javascript). I tried to add a module and include Mockito, but it seems not to work (lots …
2
votes
5answers
143 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
38 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.
6
votes
8answers
2k views

How to mock with static methods?

I'm new to mock objects, but I understand that I need to have my classes implement interfaces in order to mock them. The problem I'm having is that in my data access layer, I want to have static …
0
votes
2answers
95 views

Rhino mocks - assert method was called with given parameter

My test method look like this: [Test] public void Generated_CaseNumber_should_be_set_as_LastCaseNumber_in_PropertiesManager() { String generatedCaseNumber = …
5
votes
10answers
164 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 …
0
votes
0answers
21 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 …

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