Click here to Skip to main content
15,881,172 members
Articles / Web Development / ASP.NET

Using Workflow Foundation and Visual Studio 2008 for Testing Automation

Rate me:
Please Sign up or sign in to vote.
4.90/5 (26 votes)
6 May 2008CPOL10 min read 88.3K   844   80  
How to employ Windows Workflow Foundation for testing processes. Let's design tests on a visual diagram and automate its execution!
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Workflow.ComponentModel.Design;
using System.Drawing;
using System.Drawing.Drawing2D;
using TestflowFramework.Activities;

namespace TestflowFramework.Design
{
	[ActivityDesignerTheme(typeof(InputTextDesignerTheme))]
	public class InputTextActivityDesigner : WindowsControlActivityDesigner 
	{
		public override string Text
		{
			get
			{
				InputTextActivity activity = Activity as InputTextActivity;
				if (activity != null)
				{
					if (!string.IsNullOrEmpty(activity.TextBox))
						return "Input " + activity.TextBox;
					else
						return "<Select TextBox>";
				}
				return base.Text;
			}
			protected set
			{
				base.Text = value;
			}
		}
	}

	public sealed class InputTextDesignerTheme : ActivityDesignerTheme
	{
		public InputTextDesignerTheme(WorkflowTheme theme)
			: base(theme)
		{
			BackColorStart = Color.White;
			BackColorEnd = Color.White;
			BackgroundStyle = LinearGradientMode.ForwardDiagonal;
			BorderColor = ColorTranslator.FromHtml("#111111");
			//this.DesignerGeometry = DesignerGeometry.
		}
	}
}

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 (Senior)
Australia Australia
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions