Solution restructured to use multiple test projects
This commit is contained in:
11
test/AMWD.Common.Tests/Utils/CustomMultipleAttribute.cs
Normal file
11
test/AMWD.Common.Tests/Utils/CustomMultipleAttribute.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
using System;
|
||||
|
||||
namespace AMWD.Common.Tests.Utils
|
||||
{
|
||||
[System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage]
|
||||
[AttributeUsage(AttributeTargets.All, AllowMultiple = true)]
|
||||
internal class CustomMultipleAttribute(string name) : Attribute
|
||||
{
|
||||
public string Name { get; set; } = name;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user