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

ExpectExactlyResolvedDocumentationSignatureAttribute.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: 7a3efd8bde0f5bba60f9172329d1d4eecd91239c (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 resolves to the
	// member with this attribute, and only that member.
	public class ExpectExactlyResolvedDocumentationSignatureAttribute : BaseMemberAssertionAttribute
	{
		public ExpectExactlyResolvedDocumentationSignatureAttribute (string input)
		{
		}
	}
}