├── logo.pdn
├── WebFormsTest.Web
├── favicon.ico
├── Global.asax
├── Scripts
│ ├── _references.js
│ └── WebForms
│ │ ├── DetailsView.js
│ │ ├── GridView.js
│ │ ├── MSAjax
│ │ ├── MicrosoftAjaxTimer.js
│ │ ├── MicrosoftAjaxWebServices.js
│ │ ├── MicrosoftAjaxSerialization.js
│ │ ├── MicrosoftAjaxHistory.js
│ │ └── MicrosoftAjaxApplicationServices.js
│ │ └── Focus.js
├── fonts
│ ├── glyphicons-halflings-regular.eot
│ ├── glyphicons-halflings-regular.ttf
│ └── glyphicons-halflings-regular.woff
├── Scenarios
│ ├── WebServices
│ │ └── TestWebService.cs
│ ├── Default.aspx.cs
│ ├── ControlTree
│ │ ├── PageWithUserControl.aspx.cs
│ │ ├── PageWithUserControl.aspx
│ │ ├── Buttons_AutoId.aspx
│ │ ├── Buttons_AutoId.aspx.cs
│ │ ├── Buttons_AutoId.aspx.designer.cs
│ │ └── PageWithUserControl.aspx.designer.cs
│ ├── RunToEvent
│ │ ├── VerifyOrder.aspx
│ │ ├── VerifyOrder.aspx.designer.cs
│ │ └── VerifyOrder.aspx.cs
│ ├── Postback
│ │ ├── Textbox_StaticId.aspx.cs
│ │ ├── Textbox_StaticId.aspx
│ │ └── Textbox_StaticId.aspx.designer.cs
│ ├── Default.aspx.designer.cs
│ ├── ModelBinding
│ │ ├── Simple.aspx
│ │ ├── Simple.aspx.designer.cs
│ │ └── Simple.aspx.cs
│ ├── WebConfig
│ │ ├── AppSettings.aspx
│ │ ├── AppSettings.aspx.cs
│ │ └── AppSettings.aspx.designer.cs
│ ├── Default.aspx
│ └── Routing
│ │ └── MvcContainer.cs
├── Bundle.config
├── ViewSwitcher.ascx
├── UserControls
│ ├── MyLinkControl.ascx
│ ├── MyLinkControl.ascx.cs
│ └── MyLinkControl.ascx.designer.cs
├── Startup.cs
├── Site.Mobile.Master.cs
├── AutoEventWireup.aspx
├── Default.aspx.designer.cs
├── ViewSwitcher.ascx.designer.cs
├── App_Start
│ ├── RouteConfig.cs
│ └── BundleConfig.cs
├── Global.asax.cs
├── AutoEventWireup.aspx.cs
├── AutoEventWireup.aspx.designer.cs
├── Site.Mobile.Master
├── Default.aspx.cs
├── Content
│ └── Site.css
├── Site.Master.designer.cs
├── Web.Debug.config
├── Web.Release.config
├── Properties
│ └── AssemblyInfo.cs
├── ViewSwitcher.ascx.cs
├── Default.aspx
├── Site.Mobile.Master.designer.cs
├── Site.Master.cs
├── packages.config
├── Site.Master
└── Web.config
├── WebFormsTest
├── packages.config
├── WebApplicationProxyException.cs
├── WebFormEvent.cs
├── TestablePage.cs
├── HttpContextExtensions.cs
├── WebApplicationProxyOptions.cs
├── Internal
│ ├── HttpRequestExtensions.cs
│ ├── BrowserCapsExtensions.cs
│ ├── TestVirtualFile.cs
│ ├── TestConfigMapPath.cs
│ ├── BuildManagerWrapper.cs
│ ├── HostingEnvironmentWrapper.cs
│ ├── TestVirtualDirectory.cs
│ ├── TestVirtualPathProvider.cs
│ ├── InternalPageExtensions.cs
│ └── TestHttpSessionStateContainer.cs
├── MasterPageReflectionExtensions.cs
├── TestServer.cs
├── Properties
│ └── AssemblyInfo.cs
├── ControlExtensions.cs
├── VirtualPathWrapper.cs
├── BrowserDefinitions.cs
├── TestHttpWorkerRequest.cs
├── Fritz.WebFormsTest.csproj
└── PageExtensions.cs
├── pack.cmd
├── WebFormsTest.Test
├── Internal
│ └── VirtualPathFixture.cs
├── SetPageStateFixture.cs
├── BaseFixture.cs
├── SessionFixture.cs
├── Postback.Auto.Fixture.cs
├── packages.config
├── RehydrateUserControlFixture.cs
├── CacheFixture.cs
├── WebServiceFixture.cs
├── PrecompiledWebConfiguration.cs
├── Properties
│ └── AssemblyInfo.cs
├── DefaultPageFixture.cs
├── ControlFireEventFixture.cs
├── app.config
├── AutoEventFixture.cs
├── WebConfigFixture.cs
├── ModelBindingFixture.cs
├── RunToEventFixture.cs
├── RehydrateMasterPageFixture.cs
├── BrowserCapsFixture.cs
├── Postback.Simple.Fixture.cs
├── WebApplicationProxyFixture.cs
└── Fritz.WebFormsTest.Test.csproj
├── WebFormsTest.nuspec
├── .gitattributes
├── README.md
├── WebFormsTest.sln
└── .gitignore
/logo.pdn:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/csharpfritz/WebFormsTest/HEAD/logo.pdn
--------------------------------------------------------------------------------
/WebFormsTest.Web/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/csharpfritz/WebFormsTest/HEAD/WebFormsTest.Web/favicon.ico
--------------------------------------------------------------------------------
/WebFormsTest.Web/Global.asax:
--------------------------------------------------------------------------------
1 | <%@ Application Codebehind="Global.asax.cs" Inherits="Fritz.WebFormsTest.Web.Global" Language="C#" %>
2 |
--------------------------------------------------------------------------------
/WebFormsTest.Web/Scripts/_references.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/csharpfritz/WebFormsTest/HEAD/WebFormsTest.Web/Scripts/_references.js
--------------------------------------------------------------------------------
/WebFormsTest.Web/fonts/glyphicons-halflings-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/csharpfritz/WebFormsTest/HEAD/WebFormsTest.Web/fonts/glyphicons-halflings-regular.eot
--------------------------------------------------------------------------------
/WebFormsTest.Web/fonts/glyphicons-halflings-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/csharpfritz/WebFormsTest/HEAD/WebFormsTest.Web/fonts/glyphicons-halflings-regular.ttf
--------------------------------------------------------------------------------
/WebFormsTest.Web/fonts/glyphicons-halflings-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/csharpfritz/WebFormsTest/HEAD/WebFormsTest.Web/fonts/glyphicons-halflings-regular.woff
--------------------------------------------------------------------------------
/WebFormsTest.Web/Scenarios/WebServices/TestWebService.cs:
--------------------------------------------------------------------------------
1 | using System.Web.Services;
2 |
3 | namespace Fritz.WebFormsTest.Web.Scenarios.WebServices
4 | {
5 | public class TestWebService : WebService
6 | {
7 | }
8 | }
--------------------------------------------------------------------------------
/WebFormsTest.Web/Bundle.config:
--------------------------------------------------------------------------------
1 |
2 |
Outputting an LinkButton with custom text
4 | 5 |WebFormsTest is a test harness that provides the ability to test your ASP.NET Web Forms application objcets
8 | 9 |15 | Instructions on how to get started working with WebFormsTest are available at our project repository on GitHub. 16 |
17 |18 | Learn more » 19 |
20 |24 | This is a test web application that hosts sample pages and scenarios that help verify the functionality of the WebFormsTest harness. 25 |
26 |27 | Learn more » 28 |
29 |33 | WebFormsTest is designed to work with as many unit test tools and framework as possible. Here are a few of the tools that the authors recommend 34 |
35 |36 | Learn more » 37 |
38 |