Click here to Skip to main content
15,885,546 members
Articles / Desktop Programming / Windows Forms

UITestBench, a lightweight UI testing library

Rate me:
Please Sign up or sign in to vote.
5.00/5 (4 votes)
3 Apr 2008CPOL9 min read 53K   226   41  
This article describes how to build a lightweight test bench for testing user interfaces which are written entirely in C#/.NET, using NUnit or any other unit test framework.

Microsoft Visual Studio Solution File, Format Version 9.00
# Visual Studio 2005
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UITestDemoApp", "UITestDemoApp\UITestDemoApp.csproj", "{807050FE-B445-4DFF-B951-631A21605F27}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UITestDemoApp_UITest", "UITestDemoApp_UITest\UITestDemoApp_UITest.csproj", "{B3D494B3-72D0-4D91-A0D0-E5F3A59D1229}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UITestBench", "UITestBench\UITestBench.csproj", "{F99A9B22-16B3-40D9-AB1F-844C2FCA7CBA}"
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Release|Any CPU = Release|Any CPU
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{807050FE-B445-4DFF-B951-631A21605F27}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{807050FE-B445-4DFF-B951-631A21605F27}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{807050FE-B445-4DFF-B951-631A21605F27}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{807050FE-B445-4DFF-B951-631A21605F27}.Release|Any CPU.Build.0 = Release|Any CPU
		{B3D494B3-72D0-4D91-A0D0-E5F3A59D1229}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{B3D494B3-72D0-4D91-A0D0-E5F3A59D1229}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{B3D494B3-72D0-4D91-A0D0-E5F3A59D1229}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{B3D494B3-72D0-4D91-A0D0-E5F3A59D1229}.Release|Any CPU.Build.0 = Release|Any CPU
		{F99A9B22-16B3-40D9-AB1F-844C2FCA7CBA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{F99A9B22-16B3-40D9-AB1F-844C2FCA7CBA}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{F99A9B22-16B3-40D9-AB1F-844C2FCA7CBA}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{F99A9B22-16B3-40D9-AB1F-844C2FCA7CBA}.Release|Any CPU.Build.0 = Release|Any CPU
	EndGlobalSection
	GlobalSection(SolutionProperties) = preSolution
		HideSolutionNode = FALSE
	EndGlobalSection
EndGlobal

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Germany Germany
I currently hold the following qualifications

- PhD in Computer Science
- M.Sc. in Software Technology
- Diplom (FH) in Computer Science

Comments and Discussions