1
vote
1answer
61 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 ...
0
votes
2answers
79 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 ...
0
votes
1answer
187 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
137 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. ...
2
votes
2answers
167 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 ...
2
votes
2answers
131 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
141 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) ...
5
votes
2answers
328 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 ...
3
votes
3answers
147 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 ...
2
votes
1answer
55 views

RhinoMock.BackToRecord doesn't seem to work for Exceptions

I have used the following successfully to reset expectations between tests: MyMock.BackToRecord(BackToRecordOptions.Expectations); MyMock.Replay(); However, in the case where the second test tries ...
1
vote
0answers
85 views

How to raise an event from a stub returned from a stubbed factory?

I'm trying to unit test a class that does multithreaded processing of video files. The class under test is ParallelTranscoder. ParallelTranscoder depends on a factory to create a new transcoder for ...
0
votes
0answers
78 views

Unit testing using multiple Http Requests vs multiple threads

Summary: I want to be able to mimic multiple Http Requests in my Unit Tests (as opposed to multiple threads). Detail: I had a TCP client that had been held in the web cache - the problem was that ...
1
vote
2answers
124 views

Can't stub a ReadOnly property twice?

I have the following code. I have a somewhat legitimate reason for stubbing that property twice (See explanation below). It looks like it's only letting me stub it once. private IStatus _status; ...
4
votes
1answer
159 views

ExpectPublish fails when Publish(params T[] messages) contains more than one message

I'm attempting to test the following publishing-code (classes and properties are adjusted for example-purposes): public void PublishMessages(List<SomeDummyClass> shareRegistrationResult) { ...
0
votes
0answers
297 views

How to stub Custom Profile Provider Properties?

I've created a custom ASP.NET Profile Class based on Chris Pel's Video [How Do I:] Create a Custom Profile Provider? It was very straight forward and works well but I can't seem to figure out how to ...
1
vote
3answers
130 views

Very simple RhinoMocks test failing - Whats wrong here?

I'm trying to work out why some of my test cases (using RhinoMocks 3.6 Build 20) aren't working, and I've narrowed the issue down to the following minimal unit test: public interface ITest { ...
0
votes
1answer
413 views

Rhino mocks expect.call method with two signatures

How can I mock t a method with two singatures sudo code public Class ClassA{ ... do stuff } public Class ClassB{ ...Do stuff } public Class BigClass { public BigClass(){}. public ClassB ...
4
votes
4answers
560 views

How do I test a method was called within a class under test?

I'll start by saying I am pretty new to unit testing and I'd like to start using a TDD approach, but for now am writing unit tests for some existing classes to verify their functionality in all cases. ...
0
votes
1answer
366 views

Unit-Testing an Action with NUnit

I'd like to unit-test the following function with NUnit and Rhino Mocks. The function uses the given parameters to create a RestSharp.RestRequest and give the request to the dataAccessApi: public ...
2
votes
2answers
332 views

Testing mocked objects rhino mocks

I am new to RhinoMocks, and I am trying to write a test as shown I have classes like these public class A { public void methodA(){} } public class B { public void methodB(A a) { ...
0
votes
2answers
501 views

Rhino Mocks testing file system io

I have an application that takes a dictionary of files (file type, and list of file names) and copies the files from the original directory into another location. I've already got the basic code for ...
3
votes
2answers
509 views

How to unit test code involving SynchronizationContext?

I have following code that I'm trying to test using NUnit and Rhino mocks. void _tracker_IndexChanged(object sender, IndexTrackerChangedEventArgs e) { // _context is initialised as // ...
5
votes
2answers
2k views

How to create a stub with Moq

How do I creat a pure stub using Moq? With Rhino Mocks I did it like this: [TestFixture] public class UrlHelperAssetExtensionsTests { private HttpContextBase httpContextBaseStub; private ...
1
vote
2answers
293 views

Unit Test passes with setter only property, failing by just adding getter to the property

I created a test recently around a property with only a setter, today I modified the property to include a getter in the interface and the test case then failed. I have created a boiled down example ...
2
votes
1answer
557 views

Rhino Mocks / Repository testing - NUnit test suite fails, but single mocked unit test passes?

As per my previous question: Rhino Mocks - Testing Repository layer returns "object reference not set to instance" error I am having an issue when passing the NUnit test when it is run in ...
2
votes
0answers
287 views

Howto Test Databinding with Rhino Mocks and NUnit

I try to test my SW-Project VS2008, .NET 3.5 with "Rhino Mocks" and "NUnit". It uses the MVP Pattern and Databinding, so nothing unusual. But I get a problem (System.ArgumentException) when I try to ...
1
vote
2answers
350 views

How can I write an automated test for exception handling

I have a lot of the following type of code (each gets data from different tables). public class TableOneDAO { public TableOneDAO(IDbConnection dbConnection) { _dbConnection = ...
1
vote
1answer
857 views

Unit Testing and Mocking using RhinoMocks

I am trying to setup tests for my new projects and come across some difficulties. I am using NUnit and Rhino Mocks. The Code that I am trying to test is this, public DocumentDto ...
0
votes
1answer
188 views

assert property of mocked object has been assigned correctly using Rhino.Mocks

In a (web) application I've implemented the MVP pattern for seperation of core concerns. My presenters directly query the database using LINQ-to-NHibernate, or sometimes they use query objects when ...
1
vote
2answers
171 views

Mocking an ITable using RhinoMocks for nunit testing

I have an interface against which I run a linq to sql query: public interface IMyDataContext : IDisposable { ITable<MyTable> GetMyTable(); } On this interface, I am running a linq query: ...
3
votes
5answers
1k views

Mock File IO static class in c#

I am new to Unit Testing, and I need to mock the File static class in System.IO namespace. I am using Rhinomock, what is the best way to accomplish this, Lets say I need to mock the ...
0
votes
1answer
96 views

Which assembly do I need to reference to have IDependency interface available

I am trying to run a NUnit/Rhinomock template for VS2010 and the code contains the following IDependency dependency = mocks.CreateMock<IDependency>(); // Record expectations ...
1
vote
2answers
370 views

Raising an event from a mocked object using Rhino

I have a problem with raising an event on a mocked object. I am using Rhino Mocks 3.4. I have studied similar questions, but failed to reproduce any of the suggested solutions. I have a class -- Foo ...
2
votes
1answer
323 views

MvcMailer unit test with Rhino Mock, how to?

In a new project we use MvcMailer, it's great and I would like to know how I can test it using Rhino and NUnit? There's an other post on SO and a good Wiki page but it's not what I'm looking for. For ...
7
votes
4answers
2k views

Mocking HttpSessionState in ASP.net for nunit testing

I've see n a lot of discussions surrounding HttpSessionState and asp.net MVC. I'm trying to write tests for an asp.net application and wondering if it's possible to mock the HttpSessionState and if ...
0
votes
1answer
170 views

How do you raise an event from a Strict Mock in Rhino Mocks?

I want to test that the following code sets the Raised property when the MyEvent event is raised: public interface IEventRaiser { event EventHandler<Args> MyEvent; void DoSomething(); } ...
1
vote
2answers
1k views

Rhino Mocks: AAA Synax: Assert property was set with a given type

I am trying to assert that a property in a mock object was set with a given type. The property has an abstract type and is set with one of a number of concrete types. This is what I'm trying to do, ...
4
votes
2answers
1k views

Rhino Mock Entity Framework using UnitofWork Pattern not working

This is my first attempt at something like this, so hopefully this is simple. I have created a WCF service which uses Entity frame work to access the database. I have implemented a UnitOfWork ...
4
votes
2answers
1k views

Rhino mocks: Issue with IEnumerator.MoveNext() when stubbing an IEnumerable<T> interface

Our API has an interface inheriting from IEnumerable like this: public interface IFoos : IEnumerable<IFoo> { // Additional foo-collection-specific methods } I'm writing a unit test for a ...
4
votes
4answers
367 views

Unit Testing Multiple Levels Of Exceptions — Where To Stop?

Let's pretend I have 3 classes that each have exactly one responsibly (and method). Let's also pretend that these classes have interfaces to facilitate dependency injection. Class A calls the ...
1
vote
1answer
665 views

MVCContrib TestHelper problem with session.clear, session.abandon and Rhino Mock

Hi I'm trying to unit test my logout action on my controller but I have hard times to test or stub my Session in the HttpContext. I'm using MVC Contrib TestHelper to make it easier but now I need a ...
1
vote
2answers
192 views

Open source C# projects with both unit tests and mocks (not MVC projects)

I would like to know of any prominent projects in Codeplex, GitHub etc which are C# with ASP.NET or even just C# APIs with both functioning tests (NUnit) and mocks (RhinoMocks, NMock etc). The ...
1
vote
3answers
2k views

Help/advice needed with unit testing repositories

I am using .NET 4, NUnit and Rhino mocks. I want to unit test my news repository, but I am not sure of how to go about it. My news repository is what I will eventually be using to communicate to the ...
0
votes
1answer
215 views

How to construct unit test

I have custom event logger, and I want to test it. [Test] public void AddLogWithExceptionAndEventLogEntryTypeTest() { const string loggerName = "mockLoggerName"; var ...
5
votes
11answers
772 views

TDD with filesystem dependencies

I have an integration test LoadFile_DataLoaded_Successfully(). And I want to refactor it to the unit test for breaking dependency with filesytem. P.S. I am new in TDD: Here are my production class : ...
0
votes
1answer
495 views

How can I get StructureMap's AutoMocker to mock fake data?

I'm currently trying to implement StructureMap's AutoMocking functionality and I need help with getting the mocked . I have a Test method as follows: [Test] public void ...
2
votes
3answers
515 views

Unit test behaviour after exception is thrown?

I am just starting out with unit testing and have a scenario I'm not sure how to appraoch and my solution doesn't feel right. I have a bit of code that does something, if it fails i.e. throws an ...
0
votes
1answer
263 views

Help me avoid this NullReferenceException (using Rhino Mocks)

I'm currently trying to get one of my unit tests to work, but there is one thing in the way. I have a class called AccountingScheduleLookup that has an ID field attached to it that's read-only. When I ...
2
votes
1answer
433 views

NUnit with Rhino Mocks exception: Why is it throwing this exception?

I'm getting an exception that really makes no sense to me whatsoever. I have an Expect call for a method that takes 3 arguments into it: The types are called CallContext, IDal, and List. NUnit ...
5
votes
3answers
6k views

How to use Rhino.Mocks AssertWasCalled() correctly?

I can't find out what's the problem. I haven't found any documentation on AssertWasCalled on Rhino.Mocks site, so I have to ask the question here. What I do in my tests is I call _mocks.ReplayAll(), ...

1 2