You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
492 B
19 lines
492 B
using System; |
|
using NUnit.Framework; |
|
using NUnit.Framework.Interfaces; |
|
|
|
namespace Burst.Compiler.IL.Tests |
|
{ |
|
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false)] |
|
public class WindowsOnlyAttribute : Attribute |
|
{ |
|
public WindowsOnlyAttribute(string reason) |
|
{ |
|
} |
|
} |
|
|
|
[AttributeUsage(AttributeTargets.Method, AllowMultiple = true, Inherited = false)] |
|
public sealed class TestCompilerAttribute : TestCaseAttribute, ITestBuilder |
|
{ |
|
} |
|
}
|
|
|