mirror of
https://gitgud.io/AbstractConcept/rimworld-animation-studio.git
synced 2024-08-15 00:43:27 +00:00
19 lines
491 B
C#
19 lines
491 B
C#
|
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
|
||
|
{
|
||
|
}
|
||
|
}
|