Click here to Skip to main content
15,893,622 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 53.1K   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.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.IO;

namespace de.steffenschuette.UITest.DemoApp
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();

        }


        private void exitToolStripMenuItem_Click(object sender, EventArgs e)
        {
            Application.Exit();
        }

        private void openTextFileToolStripMenuItem_Click(object sender, EventArgs e)
        {
            OpenTextFile(listBox1);
        }

       
        private void openTextFile2ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            OpenTextFile(listBox2);
        }



        private void OpenTextFile(ListBox listBoxForTextDisplay)
        {
            OpenFileDialog dlg = new OpenFileDialog();
            dlg.Filter = "txt files (*.txt)|*.txt|All files (*.*)|*.*";
            DialogResult res = dlg.ShowDialog();
            if (res == DialogResult.OK)
            {
                listBoxForTextDisplay.Items.Clear();

                StreamReader reader = new StreamReader(dlg.FileName);
                string line;
                int lineNo = 1;
                while ((line = reader.ReadLine()) != null)
                {
                    listBoxForTextDisplay.Items.Add(lineNo + ": " + line);
                    lineNo++;
                }
            }

        }

        private void toolStripButton1_Click(object sender, EventArgs e)
        {
            new MergeDlg(listBox1, listBox2).ShowDialog(this);
        }
    }
}

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