Firstborn/Library/PackageCache/com.unity.collections@1.4.0/Unity.Collections.Tests/DotsRuntimeIgnore.cs
Schaken-Mods b486678290 Library -Artifacts
Library -Artifacts
2023-03-28 12:24:16 -05:00

41 lines
763 B
C#

using System;
using NUnit.Framework;
namespace Unity.Collections.Tests
{
#if UNITY_DOTSRUNTIME
internal class DotsRuntimeIgnore : IgnoreAttribute
{
public DotsRuntimeIgnore(string msg="") : base("Need to fix for DotsRuntime.")
{
}
}
#else
internal class DotsRuntimeIgnoreAttribute : Attribute
{
public DotsRuntimeIgnoreAttribute(string msg="")
{
}
}
#endif
}
// This is duplicated from Entities.
#if UNITY_PORTABLE_TEST_RUNNER
class IgnoreInPortableTests : IgnoreAttribute
{
public IgnoreInPortableTests(string reason) : base(reason)
{
}
}
#else
class IgnoreInPortableTestsAttribute : Attribute
{
public IgnoreInPortableTestsAttribute(string reason)
{
}
}
#endif