0
votes
0answers
13 views

NUnit ASP.NET Forms add content to Page

In a HttpModule want to add Html in different places of a WebForms Page requested. public override void OnPreRequestHandlerExecute(HttpContextBase context) { var page = ...
4
votes
1answer
87 views

Using Nunit without creating separate project

I am creating one web application which has structure as shown in following image: I have all entities and datastore files in the App_Code folder. i.e no separate project layer is created. I want ...
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 ...
1
vote
3answers
57 views

how can I validate two ASP.NET pages have the same output HTML?

I am working on legacy code for an ASP.NET website, and I want to refactor. I've come to the conclusion that the easiest way to test for breaks is to compare the final HTML with the old page, ...
0
votes
1answer
81 views

Nunit --Data insert test issue

I am new to Nunit testing. I am trying to write test method for a method which inserts data in Database. My code is like: using System; using System.Collections.Generic; using System.Linq; using ...
1
vote
1answer
212 views

How can I “uninitialize” WebSecurity when unit testing?

My situation I'm putting tests in an ASP.NET MVC4 application. The part of the app I'm developing combines modern WebSecurity/SimpleMembershipProvider with a legacy authentication system that's being ...
-1
votes
1answer
94 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 = ...
0
votes
1answer
186 views

unit test http module, check http status code

I can't figure out why this unit test won't work. It is based off of the code sample found here: http://weblogs.asp.net/rashid/archive/2009/03/12/unit-testable-httpmodule-and-httphandler.aspx [Test] ...
1
vote
1answer
42 views

event expected not to raise is raising

I have an event and a raising method as below : public class Events { public event EventHandler<CustomEventArgs> Succeed; public virtual void OnSucceed(object sender, params object[] ...
0
votes
0answers
67 views

NMock with Unity framework

I'm trying to write some Unit Tests in my ASP.Net application using NUnit and NMock. I Used MOQ and i wrote a test like below. [Test] public void ExecutePostProcessingAsyncAndFileCountTest() ...
3
votes
3answers
250 views

NUnit testcases for WebForm

I am new to asp, C#,nunit. I am trying to write (do my homework/assignment) nunit testcases for a simple web form, that doesn't have any business logic. The web form has 4 text boxes (Name, ...
0
votes
2answers
108 views

How do I test response data using nUnit?

Django has a very handy test client/dummy web browser that one can use in test cases to verify the correctness of HTTP responses (e.g., status codes, context/model data). It does not require you to ...
1
vote
1answer
177 views

WebApi tests using in memory hosting hang when solution also contains WinForms tests

I have a solution that contains a number of different projects that include both WinForms and WebApi (RC). I am seeing an issue with WebApi tests hanging when a prior test instantiates a class that ...
5
votes
1answer
383 views

Selenium performance with .NET and Jenkins - How to profile and improve it?

I have an ASP.NET website that I want to test with Selenium. I want to setup a Jenkins instance on a "staging" virtual machine, to run the tests automatically. The problem is that the tests run ...
1
vote
0answers
97 views

How to automate NUnit tests in an ASP.NET website project?

I have a client who has a large existing application written in ASP.NET, which is setup as a website project in Visual Web Developer 2010 Express. I have been asked to demonstrate how to write unit ...
1
vote
2answers
276 views

Web-based NUnit test runner for ASP.net?

Is there any web-based test runner; to run a web-site's unit tests from the web-site? i know this is runs afoul of some people's dogma, but i want to be able to run unit tests from inside the ...
2
votes
1answer
209 views

MissingMethodException on a property in NUnit test

I'm having problems with a test. For some reason, that I haven't figured out, I can't access a n object's public property. My class is the following: public class FakeSMTPConnector : ISMTPConnector ...
2
votes
4answers
678 views

NUnit in Visual Studio 2010 in the tools option [closed]

I have installed the Nunit but it is not showing in the Tools menu of VS 2010. Please help me
1
vote
2answers
93 views

Mocking an attribute (or getter)

I'm facing an issue I don't quite understand. I'm developing an application in C#/ASP.net using the Entity Framework. I'm trying to do some unit testing on it, and therefore I need to mock one of the ...
0
votes
1answer
471 views

Correct way to nunit test httpcontext object for asp.net

I have been able to successfully unit test my asp.net related methods with context object by following hanselman article and using FakeHttpContext. I have been told that constructing FakeHttpContext ...
0
votes
4answers
194 views

How to make unit tests for methods/events

I need to make units tests for an ASP.net application. Since i never did it. I was wondering how i could make tests for events(click etc...) or to check what a method is returning... Do you have some ...
0
votes
1answer
156 views

Transferring selenium into nunit

I was working in a selenium project in the cs codebehind for an aspx page but have been trying to transfer my code to an nunit testfixture class. in a class library project. The code below ran without ...
0
votes
2answers
187 views

Turn visual studio project testfixtures into nunit dll

I have a visual studio project. I later added a .cs file for testing and have added the appropriate 'using' statements and [Test] and [Testfixture] attributes. When I open the nunit gui application, ...
2
votes
2answers
296 views

How to make a ASP.NET Webforms application testable?

I am looking at a legacy enterprise application, which written using ASP.NET. No controls or web forms. This is how it works: EmployeeList.aspx: <%@ Page Language="C#" AutoEventWireup="true" ...
0
votes
1answer
224 views

Maven, NPanday, C#, Hudson and NUnit [closed]

This is more a development process discussion than an out and out question. What do you all think should about the above tools being used together within a development team. would these tools fit ...
1
vote
2answers
347 views

Selenium tests sometimes fail, sometimes pass

I have created tests using selenium 2, I'm also using the selenium standalone server to run the tests. The problem is that if I run one test, it works. If I run multiple tests, some of them fail. If ...
2
votes
1answer
439 views

ASP.NET integration tests - TestDrive.net won't run them, other testrunners will

I recently had problems with integration tests after I upgraded my solution to .NET 4.0 - the answer to that question was to grab the 64 bit version of System.Data.SQLite.dll. I've figured that out ...
2
votes
2answers
289 views

How to test ASP.NET code-behind

We are in the process of re-writing legacy code, but currently I am wondering how to test code-behind methods. Detail: No aspx controls are used. In fact code-behind reads html file, fills data ...
6
votes
4answers
626 views

Nunit Testing MVC Site

I've run into a bit of an issue trying to unit test an MVC site I have: I require a lot of the ASP.NET environment to be running (generation of httpcontexts, sessions, cookies, memberships, etc.) to ...
0
votes
1answer
181 views

Nunit tests on Response.Cache.VaryByHeader

I am doing some Unit testing with NUnit and NSubstitute on a function that uses HttpResponse, I know you can't mock these objects so I have created interfaces to represent them and some of there ...
5
votes
2answers
910 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
6answers
648 views

Any ASP.NET (WebForm) apps which have good unit tests (CodePlex or anywhere)?

I am looking for any ASP.NET (WebForms & C#) app which has some good unit tests in its solution. Good meaning testing different kinds of edge cases and does a good code coverage. Any app on ...
1
vote
1answer
544 views

Nunit and web applications

I begin studying Unit testing with "(NUnit)". I know that this type of testing is used to test "classes" , "functions" and the "interaction between those functions". In my case I develop "asp.net web ...
6
votes
4answers
772 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 ...
3
votes
1answer
171 views

Nunit GUI interface

I have succesfully made a test class that imports using using NUnit.Framework; To the left i have a icon to run the test so far so good. But how exactly do i use the external graphical interface of ...
1
vote
3answers
2k views

How to pass parameters to NUnit Test Cases through the UI

Is there any third-party UI tool to accept and pass parameters to NUnit Test Cases? I am desperately looking for it. Your comment and suggestion are much appreciated!!
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 ...
2
votes
3answers
808 views

What is the best unit testing framework for ASP.NET (C# .NET 3.5)?

I would like to have information on the available unit testing frameworks in .NET realm. Especially the ones which are suitable for ASP.NET (C# .NET 3.5). Your comments and suggestions would be much ...
2
votes
2answers
1k views

How to unit test an UrlHelper custom helper method

I am using ASP.NET MVC 3 and NUnit. I am trying to write a unit to test one of my helper methods. Here it is: public static class UrlHelperAssetExtensions { private static readonly string ...
4
votes
3answers
857 views

Test output from HtmlTextWriter

Quite simply I want to be able to test that a Asp.Net web forms server control is outputting the correct Html as it will be building dynamic content. I'm just starting to create the control and ...
1
vote
1answer
1k views

General setup for Nunit testing in ASP.NET webapplication

Coming from Java programming, I'm used to the general Main<->Test Maven-setup for a project. Whenever there's a new build, all tests will be run by Maven/Junit and I get feedback about them. I've ...
1
vote
3answers
867 views

adding a 3rd party test framework for ASP.NET MVC3 and Razor view engine

Would like to add a third party test framework (such as NUnit or MbUnit) to the drop-down list of test projects for the ASP.NET MVC3 type project in Visual Studio 2010. This had worked before for ...
0
votes
1answer
672 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 ...
0
votes
1answer
180 views

Verifying binary content with WatiN

I'm testing a site that serves up some binary (i.e. non-HTML) content. Some links directly deliver custom images, other links custom PDF's. I'm building test cases in WatiN and NUnit. Wondering if ...
3
votes
3answers
3k views

NUnit Error: Not a test assembly

I have a Solution with 3 projects in it (one is a C# class-library for unit tests, another is a MVC 2 web application) I have included all the necessary references for NUnit, and I have correctly ...
1
vote
1answer
347 views

Where to instantiate interface in Nunit test

I think theres something really simple I'm missing so I apologize in advance. I'm trying to test an interface with Nunit. The interface is implemented by a class derived from a base class and I'm ...
1
vote
1answer
600 views

How do I test an ASP.NET MVC2 post action with validation when using MvcContrib TestHelper?

I'm attempting to write a unit tests for an ASP.NET MVC 2 post action that takes a view model as its sole parameter. The view model is decorated with validation attributes such as [Required]. I'd like ...
0
votes
3answers
1k views

How to attach IE/FF to Visual Studio?

Suppose I have a class library cl1 and a unit test for it that is called clt1. I can use Visual Studio's Attach to Process feature to attach to NUnit runner. This lets me debug cl1, for example set ...
4
votes
2answers
930 views

how to represent a list of U.S. States

Trying to do TDD against FluentValidation and Looking for the proper way to represent a list of US States. For example, I have an "Address" object. I would like to write a test (and a ...

1 2