Tagged Questions
0
votes
0answers
32 views
Narrowing down areas for unit testing
I have the following extract of code in a project I am currently working on and have been asked to provide full nUnit coverage for the functionality of the code.
public ...
2
votes
2answers
129 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
1answer
47 views
Can we unit test ApplicationInstaller in c#?
Well i am doing unit testing. Now i am new to unit testing. I am using nunit and rhino mock with mvc3 framework. Should i unit test ApplicationInstaller.cs ? please suggest me some recommanded ...
0
votes
1answer
191 views
How to unit test this method in c#?
i am learning unit testing. How to unit test this method using nunit and rhino mock ?
public ActionResult PrintCSV(Byte[] bytes, string fileName)
{
var file = File(bytes, ...
-1
votes
1answer
93 views
Why does this unit test not cover my property setter?
I am writing unit test cases using NUnit. While testing this property I get coverage for the getter, but not the setter. Why?
private string name = null;
public string Name
{
get { return ...
1
vote
1answer
63 views
Model showing null
I am writting unit test cases. I am using nunit and rhino mock.
Method which is i am testing is
public ActionResult Details()
{
EmployeeDTO employee = ...
1
vote
2answers
177 views
filterContext.HttpContext.Request.IsAuthenticated showing invalid operation error
I am writting unit tests. I am new to unit test. I have no idea how to test this method. Should i unit test private method? I am using rhino mock.
private bool ...
2
votes
1answer
121 views
Response.StatusCode is null in nunit testing
i am writing unit test cases. I am trying to write unit test for this method but showing error. How to unit test this method in mvc3 framework and rhino mock.
public ActionResult ...
-1
votes
1answer
64 views
Object reference error in unit testing
i have a controller action
[HttpPost]
public ActionResult CreateFocus(FocusFormModel focus)
{
var errors = focusService.CanAddFocus(Mapper.Map<FocusFormModel, ...
1
vote
1answer
177 views
Finding difficulty in unit testing a Controller Action method using NUnit
I want to Unit test the method ExecLogin() using NUnit testing framework. But I'm having problem while writing code for the testing because the GenerateInput() method is declared as internal virtual. ...
2
votes
2answers
1k views
Mocking HttpContext.Current using moq on NUnit Test
I am testing an MVC 3 controller that calls methods on this class:
public class SessionVar
{
/// <summary>
/// Gets the session.
/// </summary>
private static ...
0
votes
2answers
87 views
How to unit test the Private Actions in MVC application?
Can we unit test the action which are having access specifier as private? If possible how can we unit test the private actions?
1
vote
1answer
145 views
Test if ActionMethod exists in Controller
I have about a dozen different mail forms as part of a complex Asp.Net MVC-3 web site.
Each form has significantly different processing logic, so each form has a different ActionMethod within my ...
2
votes
1answer
122 views
TryUpdateModel fails only in unit tests to update child objects
I am able to get the following code to work on the server, but not in a unit test. In the unit test, the simple properties are set correctly, but the child objects are not. I've been beating my head ...
0
votes
2answers
350 views
how to unit test controller when automapper is used?
here's my controller
[POST("signup")]
public virtual ActionResult Signup(UserRegisterViewModel user)
{
if (ModelState.IsValid)
{
var newUser = ...
0
votes
2answers
113 views
Where is my database file?
I have an MVC3 web application with a local database under App_Data/ASPNETDB.MDF. I also have an integration test project that I'm using to run NUnit against. It has some tests reading from the ...
3
votes
3answers
255 views
need help to unit test my service layer in my mvc3 project
my mvc3 project has service and repository layers.
my service layer:
public class UserService : IUserService
{
private readonly IUserRepository _userRepository;
public ...
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 ...
2
votes
2answers
516 views
NUnit tests fail due to Enterprise Library
I've seen several questions here dealing with similar problems but none of them have helped me.
I am using NUnit with VS 2010 in an MVC 3 project.
I have a Tests project and am writing my first ...
1
vote
0answers
459 views
Unit Testing While Using Entity Framework
I have a web application that has been created using MVC 3 and Entity Framework. I would like to start using unit testing, but so far I have not been able to run any unit tests due to the way the ...
1
vote
1answer
100 views
How can i handle mutithreaded UnitTests of repository to simulate concurrency?
I'm building mvc3 application that should serve about 1000-2000 concurrent users,
i implemented Castle Active Record and simple repository pattern, now i need to unit test all this that it won't crash ...
2
votes
5answers
402 views
What should I unit test in my ASP.NET MVC3 project?
I am new to unit testing. I have a web application using asp.net mvc3 and s#arp lite. I want to add unit test to this application. so far, I have a test for each action in the controller class. ...
2
votes
1answer
466 views
Why is Controller.Url null when I unit test my action?
I've followed this answer to mock HttpContext, Request, Response and User and set Controller.ControllerContext and Controller.Url.
Controller.Url is most definitely not null before calling ...
1
vote
1answer
145 views
C#, SQL, MVC, Entity Framework, NUnit, Agile phone screen questions
Can anyone suggest any good questions to ask candidates relating to C#, SQL, MVC, Entity Framework, NUnit and Agile? I will be giving these questions to a recruiter to ask so they can't be too open ...
1
vote
0answers
201 views
Cannot load file or assembly nunit.framework when I create a new controller in MVC3
In this moment, I met a strange behaviour in VS2010. I cannot understand him.
Few days ago, I created many controllers in MVC3 application and many models.
Today, when I want to create a new ...
6
votes
1answer
1k views
Looking for direction on unit testing a controller extension that renders a partial view
As the title says, I'm looking for direction on how to properly test a controller extension. The extension renders a partial view which in turn I'm using within a JSONResult:
public static string ...
1
vote
3answers
261 views
Frameworks being used with ASP.NET MVC 3 for TDD?
What are the most popular frameworks being used with ASP.NET MVC 3 for TDD? What are you using? Why'd you choose one over the other?
I've worked with Pex/Moles, I've heard of NUnit what else is out ...
2
votes
3answers
254 views
Good library for using TDD with MVC3
Building a new website at work and I'm trying to learn some TDD so that it can be implemented from the beginning on the new website (old site was plain asp pages with zero testing). However, since ...
2
votes
1answer
339 views
Moq-ing a 404 error
I have the following 404 error ActionResult which is thrown when web pages are not found:
public ActionResult InvokeHttp404(HttpContextBase httpContext) {
IController errorController = new ...
0
votes
1answer
136 views
Got NullReferenceException when Unit testing Controller
I am working on Unit testing the MVC3 site using NUnit, MvcContrib.TestHelper package but I am facing the exception "Object reference not set to an instance of an object" when my test method accesses ...
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 ...
0
votes
2answers
232 views
Nunit test on linq to sql resultset in view
I have a model which contains a link to sql query that fetches information from my db then I loop it out in my view which renders a partial with the resultset in a table. Quite simple and ...
0
votes
1answer
155 views
NUnit - UpdateModel issue: NullReferenceException
I have problem with testing classes, which using UpdateModel() method.
I get System.NullReferenceException.
I use NUnit.
This is my method from HomeController:
public ActionResult ...
1
vote
0answers
303 views
MVC3 Testing a Create Action and passing back created object - TempData?
How to pass a successfully created object from Create action with a RedirectToAction?
All looks good in the action, just can't reference it in the test.
[Test]
public void ...
1
vote
1answer
133 views
Assert on something which may not be there - nullreferenceexception
Using nUnit. result is a ViewResult coming back from an MVC3 controller - it may or may not be there.
This works, but smells! Is there a better way?
string errorMessage = "";
try {
...
0
votes
2answers
2k views
NUnit testing MVC Controller returns null View
My HomeController.Index() action works (in normal operation), but under NUnit testing, the ActionResult (ViewResult) that is returned always has a null View and ViewName.
Here are the tests I am ...
3
votes
3answers
612 views
NUnit test fails because of System.AccessViolationException
I have a series of NUnit tests and some are failing, yet I can't seem to find a reason, and the exception is telling me nothing. This is my case:
//Controller Action
[HttpPost]
...
0
votes
2answers
1k views
MVC3 Razor with nHibernate
As a famous ORM we decided to user nHIbernate with asp.net mvc3. We set up our project in the following way:
NHibernate Repository [contains mappings, service and repositories for nhibernate]
MVC3 ...
0
votes
1answer
624 views
Mock presence of Authorize attribute
I was wondering how you could mock that a controller is decorated with the [Authorize] attribute in MVC3? I am using a custom membership provider. I would like to test that a controller been decorated ...
34
votes
4answers
8k views
MVC 3: How to learn how to test with NUnit, Ninject, and Moq?
Short version of my questions:
Can anyone point me toward some good, detailed sources from which I
can learn how to implement testing in my MVC 3 application, using
NUnit, Ninject 2, and Moq?
Can ...
1
vote
1answer
256 views
How do I coordinate settings between my ASP.NET MVC 3 app and SpecFlow?
So I have a VS 2010 solution containing one ASP.NET MVC 3 project and one SpecFlow project (with NUnit as test runner) to test the former. When testing under SpecFlow (by running the SpecFlow ...
1
vote
2answers
1k views
ServiceLocator not initialized in Tests project
When attempting to write a test related to my new Tasks (MVC3, S#arp 2.0), I get this error when I try to run the test:
...
5
votes
2answers
909 views
Watin is taking black screenshots within integration test
We are using WatiN - 2.1.0 to take a screenshot when an integration test fails. When running these tests locally on my dev VM all screenshot's are recorded correctly (using IE8 or IE9).
However, when ...
5
votes
4answers
412 views
What are the preferred options, today, for unit testing in Visual Studio 2010?
I'm new to TDD, and am looking at options for unit testing my Visual Studio 2010 solution. This solution is an MVC3 web app, which I'm attempting to use DDD with IoC, repository, and unit of work ...
2
votes
2answers
429 views
How to achieve dependency injection on ViewModel classes?
I have a view model class which has a method that does a calculation based on the period of time between a date on the viewmodel with the current time using DateTime.Now.
I want to be able to Unit ...
6
votes
4answers
771 views
NUnit Rollback After Test
I am pretty new to NUnit (and automated testing in general). I have recently done some Ruby On Rails work and noticed that in my test suite, when I create objects (such as a new user) and commit them ...
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 ...
3
votes
2answers
666 views
MvcMailer: Can't complete NUnit tests on Razor Views which use Url.Action
Here's my problem - I am using MvcMailer to create nicely formatted emails using Razor syntax, and it's a great tool to use for that!
The issue I'm running into is this - here's some syntax from my ...
6
votes
4answers
465 views
How to organize code and tests with asp.net mvc and unit testing
So, I'm biting the bullet and trying to get started with asp.net MVC, unit testing and TDD.
I have a vague understanding of the concepts involved, which is to say somewhat beyond the "Hello World" ...
0
votes
2answers
209 views
Mock object fails to return required object
There is bound to be something obvious I'm overlooking - there usually is when I have problems like this.
I have a controller that simply returns a news article based on a supplied ID:
[HandleError]
...

