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.
41 lines
763 B
41 lines
763 B
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
|
|
|