Rhino.Mocks is a dynamic mock object framework for the .NET platform. Rhino.Mock's purpose is to ease testing by allowing the developer to create mock implementations of custom objects and verify the interactions using unit testing.

learn more… | top users | synonyms

1
vote
0answers
10 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
33 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
31 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
63 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
47 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 ...
2
votes
1answer
77 views

Generate a Mock object with a Method which raises an event

I am working on a VB.NET project which requires the extensive used of Unit Tests but am having problems mocking on of the classes. Here is a breakdown of the issue: Using NUnit and Rhino Mock 3.6 ...
1
vote
1answer
28 views

Limiting Scope of UnitTest using Rhino stubs

I'm working on a unit test for a service method, that has dependencies. Simplified: public class ConditionChecker { private SqlConnection _connection; public bool CanDoSomething() { ...
0
votes
1answer
26 views

Rhino.Mocks with vb.net

I just installed rhinomocks via nuget package manager in vs2010. I tried to import rhino.mocks Imports Rhino.Mocks but it keeps saying "Namespace or type specificed in the Imports 'Rhino.Mocks' ...
0
votes
2answers
83 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
106 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
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 ...
0
votes
0answers
77 views

Why does this throw exception

The test: [TestMethod] public void TestStringWithValidAndInvalid() { MockRepository mocks = new MockRepository(); ICentipedeCore mockCore = mocks.DynamicMock<ICentipedeCore>(); ...
1
vote
1answer
56 views

Mocking WebSecurity provider

I'm trying to create some simple unit tests for my controllers and I've come across an issue. I'm using the new membership provider in MVC 4 and getting the WebSecurity.CurrentUserId and storing that ...
1
vote
1answer
105 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
47 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
75 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
22 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
102 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
70 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
106 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
41 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
84 views

Unit Testing method failing with lambda expression

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

using rhino mocks to create a test case for mocking a webclient method

I am new to rhino Mocks and I need to write a unit test case for the following method: public string PutFileInArchive(string fileName, string userId, string mimeType, byte[] fileContents, ...
0
votes
1answer
166 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
2answers
133 views

How to write unit test for this method

I am writing unit test for this method. I have tried lot of times but still can not write any code for it. Please suggest me how to unit test it. I am using C# , nunit framework and rhino mock. ...
0
votes
1answer
50 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
27 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
118 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
163 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 ...
1
vote
2answers
43 views

Mocking the 3rd party components with concrete class

I am desiging component which refers to a assembly deisgend by a third party. In my component i am creating an instance of the object exposed from the third party. Now i wanted to do a unit testing ...
0
votes
2answers
119 views

Rhino mocks when called get argument

I’ve a repository like the below: internal class Repository<T> : IRepository<T> where T : class { public virtual ITable GetTable() { return _context.GetTable<T>(); ...
0
votes
0answers
143 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
161 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
75 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
63 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
115 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 ...
1
vote
1answer
93 views

Rhino Mocks Exception from Castle Dynamic Proxy When Mocking Generics with Where

I have an exception from Rhino Mocks 3.6.0 and 3.6.1 when mocking the following interface: public interface ic { IComponentConfig<TImpl> Bob<TSvc, TImpl>() where TImpl : ...
0
votes
2answers
51 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 ...
1
vote
1answer
205 views

Why use Rhino Mock Stub method?

I just started using Rhino mock to set up test cases for my project. What exactly does the .Return(objToReturn:list) do ? Its only seems to work if I initialize and populate the list then pass it ...
3
votes
2answers
109 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 ...
0
votes
1answer
96 views

How to unit test a dictionary which returns a func?

My code looks as below: public class FileFormatLookup : Dictionary<string,Func<string>> { private Workbook workbook; private MemoryStream memoryStream; public ...
0
votes
0answers
71 views

Need Help Mocking void method with Rhino Mocks that sets an object property in the calling method

I have a method that calls another method with a return type of void. The called void method sets an object's property in the original method. I'm a little stumped on how to achieve this.This is what ...
2
votes
2answers
126 views

How to unit test catch block of this method?

I am learning unit testing. How to unit test this method using NUnit and Rhino Mock? Well I have tested try block and want to test catch block for code coverage. [HttpPost] public ActionResult ...
1
vote
2answers
137 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
46 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 ...
1
vote
1answer
87 views

Load MockReposity object with MockRepository property through Spring

Versions: C# 4.0, Spring.Net 1.3.2, RhinoMocks 3.6.1 Given these two interfaces: public interface IDivisionSelectView { // ... } public interface ILoginView { IDivisionSelectView ...
0
votes
2answers
110 views

Mock an instance inside a class in C#

I'm trying to mock an instance inside a class. This is the class(simplified): public void CreatePhotos(string elementType) { var foo = new PicturesCreation(); //some code here... if ...
3
votes
3answers
113 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 : ...
0
votes
1answer
67 views

How to test using interface collection with Rhino.Mocks

In my interface public IMyListInterface : IList<IMyItem> { void Foo(); } how can I easily create an example for testing classes that use IMyListInterface. Currently I'm using ...
5
votes
2answers
320 views

Can we unit test global.asax in asp.net?

I am doing unit testing. I have no idea that how to unit test global.asax in asp.net. Is global.asax in asp.net come under unit test coverage ? Also there is application installer class which contain ...

1 2 3 4 5 19