Welcome to mirror list, hosted at ThFree Co, Russian Federation.

RowAttribute.cs « framework « NUnitExtensions « nunit24 « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6d656221a70a51ffe73fe57992785f89417552b9 (plain)
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
// *********************************************************************
// Copyright 2007, Andreas Schlapsi
// This is free software licensed under the MIT license. 
// *********************************************************************
using System;

namespace NUnitExtension.RowTest
{
	[AttributeUsage(AttributeTargets.Method, AllowMultiple = true)]
	public sealed class RowAttribute : Attribute
	{
		private string _testName;
		private object[] _arguments;
		private string _description;
		private Type _expectedExceptionType;
		private string _exceptionMessage;
		
		public RowAttribute(object argument1)
		{
			_arguments = new object[] { argument1 };
		}
		
		public RowAttribute(object argument1, object argument2)
		{
			_arguments = new object[] { argument1, argument2 };
		}
		
		public RowAttribute(object argument1, object argument2, object argument3)
		{
			_arguments = new object[] { argument1, argument2, argument3 };
		}
		
		public RowAttribute(params object[] arguments)
		{
			_arguments = arguments;
		}
		
		public string TestName
		{
			get { return _testName; }
			set { _testName = value; }
		}
		
		public object[] Arguments
		{
			get { return _arguments; }
		}
		
		public string Description
		{
			get { return _description; }
			set { _description = value; }
		}
		
		public Type ExpectedException
		{
			get { return _expectedExceptionType; }
			set { _expectedExceptionType = value; }
		}
		
		public string ExceptionMessage
		{
			get { return _exceptionMessage; }
			set { _exceptionMessage = value; }
		}
	}
}