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

BaseMemberAssertionAttribute.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: 563ebfb8f611ced73ab899cc0a48217d83df4077 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using System;

namespace Mono.Linker.Tests.Cases.Expectations.Assertions
{
	/// A base class for attributes that make assertions about a particular member.
	// The test infrastructure is expected to check the assertion on the member to which
	// the attribute is applied.
	[AttributeUsage (AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Method | AttributeTargets.Constructor | AttributeTargets.Field | AttributeTargets.Property | AttributeTargets.Event | AttributeTargets.Delegate, AllowMultiple = true)]
	public abstract class BaseMemberAssertionAttribute : Attribute
	{
	}
}