1
vote
2answers
17 views

How to mock a command service to call private methods called by it?

I have a CommandController class with one responsibilty, provide to the CommandService the Module commands. To hide the implementation the class registers the commands and contain private methods with ...
1
vote
2answers
32 views

Rhino Mocks, is it possible to create a stub for a creation of a concrete class?

I have a service class, it creates a new concrete PropertyClass, before doing action. I'm trying to test if DoSomething() was run. Is it possible to create stud and control the returned Property ...
1
vote
3answers
45 views

Rhino Mocks how to test a event has been registered in AssertWasCalled(AAA) way?

I have a service class and an action class, and the action happens when event triggered. So test register the event in service class is kind of important. I tried to use Rhino Mock test ...
0
votes
1answer
15 views

MSTest Out of memory exception

Im having some problems running a test that creates a very large byte array (~4GB). When i run it on a release/debug mode, everything works great, but when i run a test which initializes this array, ...
0
votes
2answers
35 views

How to mock data access in private methods

I would like to ask how can I use rhino mocks with in the next example: Public Class CustomerService { Public void Register() { Action1(); Action2(); } ...
-1
votes
1answer
47 views

How to mock not implemented Dependency injection?

I want to unit test the following code.right now I'm using NUnit with Rhino Mock. Note: All the NUnit test cases should not do any database operation interface IdbOperation { int ...
2
votes
0answers
21 views

How to use RhinoMocks Test GetEntityByName<T> Function? Is it possible or good practice?

I have a method using reflection to get a generic type of entity by name. public T GetEntity<T>( string name ) where T : EntityBase { return GetDbSet<T>().FirstOrDefault( x => ...
0
votes
0answers
20 views

RhinoMocks creates same Mock, with stored expectations, from one test to the next

We have a test scenario in which we have a base class that news up an instance of all Injectible dependencies for each test (in the [SetUp] method). However, no matter what I do, stubs or ...
2
votes
1answer
37 views

Stub setter in Rhino Mock partial mock

I'm following the accepted answer in this question but I'm getting a NullReferenceException. What I need is having a partial mock stub a property (both getter and setter) to behave like a stub (as a ...
0
votes
1answer
40 views

Rhino Mock Stubbing method with ExpandoObject as parameter

I want to unit test that a method under test calls a stubbed object and method with the right parameters. The problem is that one of the parameters is a dynamic (ExpandoObject). If "data" (variable ...
0
votes
1answer
38 views

How do I tell RhinoMocks to return the same object passed as parameter

I'm using RhinoMock for my unit testing and I want to know how do set it up so a particular method always returns the same object it received as parameter. This is the interface I want to mock: ...
1
vote
1answer
107 views

Mocking Reference Parameter with RhinoMocks

I my code, I have the following call: string proposed=string.Empty; validator.IsValid(arg0, arg1, ref proposed); I stub the validator in my test and want that stub to alter the content of the ...
0
votes
1answer
62 views

InvalidOperationException by using Rhino mocks and databinding

I'm writing some unit tests for a class (in example called ClassUnderTest) which has a property binding to a property from its model. As the model is defined with a interface (IModel), the model is ...
0
votes
2answers
128 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, ...
2
votes
1answer
109 views

Mock is operator

Is it possible to mock the is operator? In my code I have logic depending on what type of class it is, but the value itself is stored in the class as the common interface. Basically, what I want to ...
0
votes
1answer
44 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
1answer
125 views

Rhino Mocks - constructor fails when passing mock class as argument

EDIT: I am entirely restating this question because I previously didn't articulate it correctly. Everything except my test class is part of an API. I am passing a mock interface into a mock class, ...
0
votes
1answer
70 views

mocking database objects with Rhino mock

I am sorry if this question is already been asked. I am very new to Unit Testing and I am suppose to use Rhino for mocking. So the problem is...I have a method to test and that method is suppose to ...
0
votes
2answers
95 views

Rhino mocks for accessing database

Please excuse me if this question has been asked before. I'm in a stage that searching for example is returning too much results that confusing me. I'm new to Rhino mocks, i know there are tons of ...
1
vote
1answer
31 views

RhinoMocks expectation with dynamic parameter

Is there anyway to mock an method that takes a dynamic parameter? I want to set an expectation like this: _hasher.Expect(h => h.ComputeHash(Arg<dynamic>.Matches(o=> o.PropertyA == ...
4
votes
2answers
114 views

Adding Virtual Keyword When Testing Legacy Code

I am adding tests to some gnarly legacy code in order to have confidence enough to seriously refactor it. One of the issues is that whoever wrote the code obviously made no attempt to make the code ...
2
votes
1answer
92 views

How Structure Map Automocker Inject works?

I have constructor containing IEnumerable parameter. When I try to Inject concrete object to automocker it is not used. When I use wrapper class containing IEnumerable property all works as ...
0
votes
1answer
148 views

How to mock(rhino.mocks) response object from base.SendAsync() in MVC4.5 Web API handler SendAsync() method

I have to write unit test on ASP.NET MVC Web API Controller with Rhino.Mock I have a handler named AHandler.cs with inherts from System.Net.Http.HttpClientHandler class. The singnature SendAsync ...
0
votes
1answer
49 views

How to mock generic interface in vb.net using Rhino Mocks

I have an interface that looks something like this: ISomeInterface(Of ClassA, ClassB) Can I mock this interface using VB.NET and Rhino Mocks? If so, how? If not, which alternatives do I have?
0
votes
0answers
101 views

Unit Testing method failing with lambda expression

I am trying to write a unit test. [TestInitialize()] public void MyTestInitialize() { _mocks=new MockRepository(); MockFactory.Reset(); _scheduledOrderprovider = new ...
0
votes
1answer
290 views

Mocking DBSet, EF Model First

As said in the title, I follow Model First method. So my Model classes are Automatically generated. If I want mock the DBContext derived MyModelContainer which contain DBSets of entity classes. Read ...
0
votes
1answer
64 views

How to simulate a call to HttpContext.Cache[“MyKey”] with Rhino Mocks?

Short version: How to get Rhino Mocks to simulate a call to HttpContext.Cache["MyKey"] and return expected data? Long version: I need to simulate a return value from the HttpContext.Cache with ...
1
vote
1answer
29 views

RhinoMock update method argument's properties

I have the following two lines in my code: Factory.MyMethod(argument); var property = argument.InterestingValue; So, MyMethod takes in an instance of a class and updates the InterestingValue on ...
0
votes
0answers
133 views

Which is the better way of writing unit test case in this scenario?

I have a MovieFinder class which has a dependency on ISearchEngine class. MovieFinder.Find("somestring") uses ISearchEngine.Search("somestring") to perform its task. The signature of ...
2
votes
2answers
196 views

How to write unit test cases for async methods?

I would like to write a unit test case by mocking the dependencies. The overall flow is as follows. We have a WorklistLoader which has an async method LoadWorklistItemsAsync(). To accomplish this ...
0
votes
0answers
159 views

httpContext Mock using Rhino Mocks returns error when mocking a querystring

When I run the test below I am getting back this error: Error System.InvalidOperationException: Previous method 'HttpContextBase.get_Request();' requires a return value or an exception to throw ...
1
vote
2answers
217 views

Rhino mocks how to check if a method was called by another method from the same class

I ran into a bit of a trouble while testing one of my classes. I have an abstract class which contains one public method and two protected abstract once. I need to test weather public method calls one ...
0
votes
1answer
83 views

How can I assert a method is called without executing the code within the method?

Imagine that we have below code public class test { public void Condition(x,y) { if (x == y) { methodOne(); } else { methodTwo(); ...
2
votes
1answer
66 views

What's the difference between LastCall and Expect.Call?

Can some explain when I should use the Rhino Mocks LastCall and when I should use Expect.Call. I gathered that Expect.Call is just LastCall in a wrapper. Also I assume that Expect.Call should be ...
1
vote
2answers
141 views

Why am I getting this error : requires a return value or an exception to throw?

I get the following error when I attempt to run my test. I've tried IgnoreArguments() , but that does not seem to do the trick. This exception is only thrown when I attempt mock.Ordered() if I do ...
0
votes
2answers
53 views

Verify if method called in the mocked class

If we have something like this: public class test { public void Condition() { if (x == y) { methodOne(); } else ...
3
votes
2answers
133 views

Mocking a method that takes a delegate in RhinoMocks

I have the following classes: public class HelperClass { HandleFunction<T>(Func<T> func) { // Custom logic here func.Invoke(); // Custom logic ...
1
vote
2answers
146 views

How to test method call with specific parameters using RhinoMocks?

I am using RhinoMocks for mocking/stubbing, and Nunit framework for unit testing. I have following class class A { private int data = -1; public void Initialize (int data) ...
1
vote
1answer
50 views

z.Repeat.Once not working

I'm using Rhino Mocks to write my Unit Tests and I'd like to use Assert.WasCalled functionality, but I'm keep getting an error. My help method used by a bunch of tests: Private Function ...
3
votes
3answers
124 views

How can I prevent virtual methods from being mocked?

We have a base class providing some default implementation for INotifyPropertyChanged (this class is used by many other classes and cannot be easily changed): public class ObservableBase : ...
4
votes
2answers
143 views

RhinoMocks - when a method is called n times, how to test its parameters in the n - k call

I have a method which calls another method exactly 4 times, each time with different parameters. I thought of writing 4 different unit test cases to check method is called with a specific value for ...
3
votes
3answers
164 views

c#: Mocking and Respository / Service layers

I am trying to write some unit tests for testing my service layer which i am doing well i think, the service layer as a dependency on a repository so am mocking a repository using RhinoMocks, so i am ...
1
vote
2answers
86 views

RhinoMocks - Testing property values on reference types

I need to test logic that executes a function, after which it changes a property on the parameter and then executes the same function with the updated parameter. To help illustrate this, here is some ...
1
vote
2answers
105 views

Why can't I change the return value in a Rhino Mocks stub object?

Forgive me if this is a stupid question, but I'm fairly new at mocking, and am trying to get my head around it. I have some unit tests (using the built-in Visual Studio 2010 Professional testing ...
0
votes
1answer
96 views

Rhino mocks assertwascalled with indexer and args

I'm trying to assert the following was called cacheManager.Site[typeName] = items.Where(x => !requestContext.DefaultSites.Contains(x.SiteId)).ToList(); and I can't work out the syntax for ...
2
votes
1answer
108 views

Approach to unit testing interaction with a base class

There seems to be three general patterns for testing the way a derived class interacts with it's base1. I don't really like any of them, for the reasons I've listed below. Has anyone had long term ...
0
votes
1answer
136 views

Unit test for web service (Service Reference) - xml deserialization

In Summary I need a way to deserialize an XML string into an object normally returned by a 3rd party webservice. Using C#. In Detail I have code that consumes a 3rd party Service Reference (Web ...
0
votes
1answer
96 views

Is it possible to test an internal virtual method using StructureMap.AutoMocking

Is it possible to use the auto mocking framework provided in StructureMap.AutoMocking to test an internal virtual method within the CUT? I have already added InternalsVisibleTo to the appropriate ...
2
votes
1answer
118 views

Why am i getting a null reference exception on a mocked test object?

I have the following IdleClass idleSend = MockRepository.GenerateMock<IdleClass >(); SpeedClass speedSend = MockRepository.GenerateMock<SpeeClass >(); idleSend.Expect(x => ...
1
vote
2answers
575 views

Rhino Mock: Mocking private method calls c#

It is possible to mock out a priavte method call. Example Public void StartProcess(string valueFound) { if(this.value == valuefound) { MockThisPriavteMethodCall(); ...

1 2 3 4 5 9