1
vote
3answers
46 views

Unit Testing Methods With File IO

I'm trying to get into the habit of writing unit tests, I've written a few before but they've usually been quite basic...I'd like to start making a move to TDD as i want to improve the quality of my ...
0
votes
0answers
54 views

New to Mock: Will this test be accepted? [closed]

As i'm new to Rhino Mock, I don't know if this test will be accepted by the quality controller (An expert who checks code quality) or are there improvments to be done? i red tons of information and ...
1
vote
2answers
153 views

How can I mock a repository and unit of work pattern in Entity Framework?

I am new in Moq and Unit Testing. I want to test my Repository and Unit of Work pattern with entity framework 5. But I don't understand where and how can I start. My Repository Interface : public ...
1
vote
1answer
44 views

When Condition Method in Moq

I am trying to figure how to use When method for my use. When(Func<bool> condition); Another post here has one example of usa of When method var mockedService = new ...
0
votes
2answers
68 views

Having Issues Trying To Implement Mock On Interfaces in Nunit

I have been spending quite some time trying to figure out this problem, but so far no luck. I am trying to implement Mock Test on the following I have service with two interfaces. One is to receive ...
0
votes
1answer
33 views

Mock testing of tweets recieved and responded to

I have two interfaces called ITweetReq and ITweetResp. An outside service sends Requests to send tweets when they come in, which is implemented by the interface ITweetReq and our system in return ...
0
votes
1answer
33 views

mocking doest not give return option

Hi I am doing nunit testing using moq farmework. For some reasons I cant not get Returns option it should be like below mock.Setup(foo => foo.Execute(It.IsAny<string>())) .Returns(true) ...
0
votes
1answer
121 views

Unit testing / mocking XML-RPC.net calls

I'm developing an application that uses CookComputing XML-RPC.net My question is how to unit test methods that call an external rpc method. If we take the example on the site: //This is the XML rpc ...
2
votes
2answers
99 views

C# Testing method with StorageFile as parameter

First of all, this is a Microsoft Store winrt library and I am trying to test a public method with this signature: string GetStringFromFile(StorageFile storageFile); But StorageFile doesn't have a ...
3
votes
1answer
114 views

How to mock System.Xml.XmlWriter.WriteAttributeString() with moq?

When I run the following code in my test, Mock<XmlWriter> mockXmlWriter = new Mock<System.Xml.XmlWriter>(); Language language = Language.GetLangauge(langId); ...
2
votes
1answer
187 views

Mocking ApiController which has Unit of work Dependency

I have a Apicontroller Which has dependency on unit of work object. How to write a test case for mocking ApiController Which has dependency on unit of work implemented in ApiController constructor. ...
1
vote
2answers
154 views

Unit Testing a mock WCF client

I'm having serious issues in how to deploy a WCF client in a MVC site which is easily testable. I'm struggling to set up a mock of the service without actually accessing a endpoint. Example ...
1
vote
1answer
179 views

Mock a local variable in an MVC action method?

Using Moq or Rhino, I'd like to mock a local variable in one of my MVC action methods. In my program I have a 'ProfileController' for instance, with a method that looks like: public ...
2
votes
1answer
405 views

How to effectively Unit Test a DAL that uses ADO.NET and SQL Server with NUnit?

So you have a DAL in C# that using the Repository pattern and you have an interface for each Repository. It is backed by ADO.NET, MS SQL Server, and Stored Procedure calls. This is great for ...
1
vote
1answer
119 views

How to start build use TypeMock ?

i use typemock for unit test. how to start build use typemock. can i only use typemock and msbuild ? otherwise should i use nunit-console.exe ? when I start up build with unit test... where is the ...
0
votes
1answer
330 views

Asp.net MVC Test of Create action method with NUnit and Nsubstitute always fails

I have this controller: [HttpPost] public ActionResult Create(Company company) { // try to save the record if (ModelState.IsValid) { ...
0
votes
1answer
408 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 ...
1
vote
1answer
345 views

C# Nunit error - MVP architecture

I'm trying to write a unit test for a sample project that uses the MVP architecture. When I run the test, I have the following error message: UnitTests.Tests.testCopy: Expected: "Testing ..." ...
2
votes
2answers
118 views

How to mock an object that extends a class and implements an interface?

I have this class: public class BaseFoo { public bool BoolProp { get; set; } } public interface IFoo { void Method(); } public class FooClass : BaseFoo, IFoo { public void Method() ...
2
votes
1answer
536 views

How to mock a method with multiple Ref params

I have this method call SecurityController.GetUserPermissions( _ HttpContext.Current.User.Identity.Name.ToString, GroupAdmin, GroupTrans) where GroupAdmin and GroupTrans are array of string ...
0
votes
3answers
271 views

Moq VerifySet fails when using an interface property setter

I have the following code in my Nunit test: [Test] public void SmtpSend_UsingSystemCredentials_SetsSmtpClientCredentials() { const string smtppwd = "smtppwd"; const string ...
2
votes
3answers
835 views

Override Ninject binding locally inside a test method to bind mock objects

I have the following problem, I want to use Ninject in my unit tests. My thoughts about this were like this: 1) Define a global binding schema inside a module to bind my fake objects that I use ...
0
votes
2answers
1k views

How To use NUnit DynamicMock to mock non-Interface and non-MarshalByRef

i am writing a Class wich will be initialised with a Socket. I want to write a Test using an NUnit DynamicMock. How can i create a Mock of the Socket without much effort? DynamicMock ...
0
votes
1answer
155 views

Conditional mocking using NMock

i wonder if someone is able to help me with my problem. I have to stub a method which is able to perform conditional mocking. In short, i like the stub function to return different objects of the same ...
0
votes
1answer
1k views

Moq SetUp.Return not working for repository mock

I am trying to mock my repository's Get() method to return an object in order to fake an update on that object, but my setup is not working: Here is my Test: [Test] public void ...
1
vote
2answers
249 views

Mock IDbDataAdapter Fill Method With Moq

I have an object that reads data from an Excel file using, which takes a IDbConnection, IDbDataAdapter and an IDbCommand. I use the adapters fill method to populate a table with data, and this is how ...
3
votes
2answers
301 views

Asserting a call to a public method on the same mock instance

I have the following test [Test] public void Attack_TargetWith3Damage_CausesAttackerToDeal3DamageToTarget() { var realAttacker = CreateCreature(damage: 3); var wrappedAttacker = ...
10
votes
3answers
1k views

Moq: Setup a mocked method to fail on the first call, succeed on the second

What's the most succinct way to use Moq to mock a method that will throw an exception the first time it is called, then succeed the second time it is called?
0
votes
1answer
98 views

How to unit test referenced property with nhibernate

What's the best practice if I'd like to unit test an entity with a referenced property? BlogEntry is referencing a User object by a foreign key. Right now I'm using session.Load to avoid an exception ...
7
votes
2answers
793 views

Unit testing WPF GUI Framework

I am using NUnit to test my model, but what is the best framework to test the WPF GUI, That make it easy to test user input, binding ... Thank you
0
votes
1answer
2k views

Testing events with NUnit mock objects

I'm using NUnit to test my application, which I've included a simplified version of below. I'm looking for a way to fire an event on a mock class, and check that the class under test has received it. ...
0
votes
1answer
795 views

Does Moles work with nUnit?

I have just see the Moles mocking framework from Microsoft Research, before I spend any time looking at it, I would like to know if it will work with nUnit, or do I have to use msTest?
0
votes
1answer
626 views

Nunit DynamicMock C# Presenter class

im new to Nunit testing and I was hoping someone could please provide me with a brief explaination or even a link to a site where I can get a nice explaination and example code for using ...
3
votes
1answer
2k views

How to mock a property using NUnit?

How do I mock a property using NUnit? NOTE: I found this peripheral mocking answer to be extremely useful and repurposed it as a distinct question and answer entry here for others to find. Other ...
1
vote
1answer
203 views

How do I setup this (Mock setup)

I have the following test: var home = new DummyPageModel { Parent = null }; var pageRepository = new Mock<IPageRepository>(); pageRepository.Setup(x => ...
3
votes
3answers
1k views

Mocking and testing classes with multiple constructor parameters

My service layer classes are setup for constructor injection. When mocking and testing these classes, how can I avoid having to pass in null for parameters I won't be using in my test? Sample code ...
0
votes
1answer
667 views

How to unit test the Initialize() method of System.Web.Mvc.Controller?

I would like to unit test the Initialize method of a Controller object. The Initialize () method basically extracts the player's ID from the cookies collection of the request object and retrieves the ...
3
votes
1answer
176 views

Mocking entity - Enity Framework 3.5

Is it possible to mock EF 3.5 entities. if so..how?
0
votes
1answer
435 views

How to write NUnit test for this method using the interface for mocking?

This is the exact representation of a WCF interface and class that I have. I would like to know how to write a NUnit test for this... using the interface for mocking. The main thing is I am NOT ...
4
votes
4answers
365 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 ...
0
votes
1answer
157 views

Why is this test unit pass?

I spend over 2 hours on this... i can't figure out why this test is PASSING. I mean.. it shouldnt return the view "Completed" but in the test it does! It say Expected "string.Empty" but returned ...
0
votes
2answers
178 views

Why is this test unit pass?

I spend over 2 hours on this... i can't figure out why this test is PASSING. I mean.. it shouldnt return the view "Completed" but in the test it does! It say Expected "string.Empty" but returned ...
5
votes
3answers
2k views

Mocking HTTPResponse in a unit test

I'm trying to create unit tests for some legacy code . One of the classes that I have to test is called FileDownloader which has just the following one method : public void Transmit(string fileName, ...
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
2answers
174 views

Unit testing a menu in ASP.NET MVC 2

I have done some reading on unit testing and want to start with my first test. I am using ASP.NET MVC 2. We determine the type of user by getting the staff number and checking it against the Roles ...
3
votes
2answers
597 views

Has nUnit got a mocking framework built in and should I use it?

I recall that there is a mocking framework build into nUnit, but I can find details of it on the nUnit web site. Was I dreaming? I was considering using it to save the pain of having to introduce ...
2
votes
2answers
319 views

Making a DynamicMock MockInstance equal to itself

Trying to use NUnit to test a method that adds an object to a queue, and throws an exception if the object's already been queued, but it fails because Queue.Contains() can't detect that the mock ...
2
votes
1answer
512 views

MOQ 4.0: The type initializer for 'Moq.Mock`1' threw an exception

I'm getting the exception The type initializer for 'Moq.Mock`1' threw an exception. using Moq 4.0 I've checked around on a couple of forums and they allude to using the Moq-NoCastle version. ...
2
votes
2answers
1k views

Unity Nunit & Rhino Mocks

could anyone give me a good example of using rhino mocks, nunit, and unity together. I am reading the help on each but there doesnt seem to be any good sample projects of how you would use them ...
1
vote
1answer
534 views

Returning specific UserHostAddress using TestControllerBuilder

I am using MvcContrib and the TestControllerBuilder to write tests for my controller. I am writing the tests for my Error Handling Controller that looks like this: public JsonResult HttpError() ...

1 2