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

IgnoreTestCaseAttribute.cs « Assertions « Mono.Linker.Tests.Cases.Expectations « test - github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cf6d75094912a3387681514636b9c1e8296a46c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System;

namespace Mono.Linker.Tests.Cases.Expectations.Assertions {
	[AttributeUsage (AttributeTargets.Class)]
	public class IgnoreTestCaseAttribute : Attribute {

		public IgnoreTestCaseAttribute (string reason)
		{
			if (reason == null)
				throw new ArgumentNullException (nameof (reason));
		}
	}
}