Click here to Skip to main content
15,888,802 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.
/*
 * This file is licensed under the Code Project CPOL License
 * http://www.codeproject.com/info/cpol10.aspx
 * 
 * © Steffen Schütte 2008
 */

using System;
using System.Collections.Generic;
using System.Text;
using System.Reflection;

namespace de.steffenschuette.UITest.Framework
{
    internal class ApplicationStartInfo
    {
        private Assembly assemblyToStart;

        /// <summary>
        /// Gets the assembly containing the Application Under Test.
        /// </summary>
        /// <value>The assembly to start.</value>
        public Assembly AssemblyToStart
        {
            get { return assemblyToStart; }
        }

        private object arguments;

        /// <summary>
        /// Gets the arguments to start the assembly with. Usually a string[].
        /// </summary>
        /// <value>The arguments.</value>
        public object Arguments
        {
            get { return arguments; }
        }
         
        public ApplicationStartInfo(Assembly assemblyToStart, object arguments)
        {
            this.assemblyToStart = assemblyToStart;
            this.arguments = arguments;
        }
    }
}

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