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

IgnoreTestCaseAttribute.cs « Assertions « Mono.Linker.Tests.Cases.Expectations « Tests « linker - github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9d3cfacc716c6c496c0846a761c7c374c59fb406 (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 readonly string Reason;

		public IgnoreTestCaseAttribute (string reason)
		{
			Reason = reason;
		}
	}
}