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

ExpectUnresolvedDocumentationSignatureAttribute.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: 518dfad5a3c210a9bdbdd7c56dd6d9ac89004adf (plain)
1
2
3
4
5
6
7
8
9
10
11
namespace Mono.Linker.Tests.Cases.Expectations.Assertions
{
	/// Asserts that the given documentation signature string does not resolve
	/// to the member with this attribute.
	public class ExpectUnresolvedDocumentationSignatureAttribute : BaseMemberAssertionAttribute
	{
		public ExpectUnresolvedDocumentationSignatureAttribute (string expected)
		{
		}
	}
}