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

RowTestAttribute.cs « framework « NUnitExtensions « nunit24 « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 35ca2ecbef7f6a9fd1115b7de69a86e648328b89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// *********************************************************************
// Copyright 2007, Andreas Schlapsi
// This is free software licensed under the MIT license. 
// *********************************************************************
using System;

namespace NUnitExtension.RowTest
{
	[AttributeUsage(AttributeTargets.Method, AllowMultiple = false)]
	public sealed class RowTestAttribute : Attribute
	{
	}
}