File: TestEventArgs.cs

package info (click to toggle)
nunit2.2 2.2.0-3.1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 4,164 kB
  • ctags: 4,237
  • sloc: cs: 25,295; sh: 80; xml: 76; cpp: 70; makefile: 56; ansic: 7
file content (75 lines) | stat: -rw-r--r-- 1,468 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
using System;

namespace NUnit.Util
{
	/// <summary>
	/// The delegate for all events related to loading test projects
	/// </summary>
	public delegate void TestProjectEventHandler ( object sender, TestProjectEventArgs args );

	public enum TestProjectAction
	{
		ProjectLoading,
		ProjectLoaded,
		ProjectLoadFailed,
		ProjectUnloading,
		ProjectUnloaded,
		ProjectUnloadFailed,
	}

	/// <summary>
	/// Summary description for TestProjectEventArgs.
	/// </summary>
	public class TestProjectEventArgs : EventArgs
	{
		#region Instance Variables

		// The action represented by the event
		private TestProjectAction action;

		// The project name
		private string projectName;
		
		// The exception causing a failure
		private Exception exception;

		#endregion

		#region Constructors

		public TestProjectEventArgs( TestProjectAction action, string projectName )
		{
			this.action = action;
			this.projectName = projectName;
		}

		public TestProjectEventArgs( TestProjectAction action,
			string projectName, Exception exception )
		{
			this.action = action;
			this.projectName = projectName;
			this.exception = exception;
		}

		#endregion

		#region Properties

		public TestProjectAction Action
		{
			get { return action; }
		}

		public string ProjectName
		{
			get { return projectName; }
		}

		public Exception Exception
		{
			get { return exception; }
		}

		#endregion
	}
}