mirror of
https://gitgud.io/AbstractConcept/rimworld-animation-studio.git
synced 2024-08-15 00:43:27 +00:00
14 lines
398 B
C#
14 lines
398 B
C#
using NUnit.Framework.Constraints;
|
|
|
|
namespace UnityEngine.TestTools.Constraints
|
|
{
|
|
public static class ConstraintExtensions
|
|
{
|
|
public static AllocatingGCMemoryConstraint AllocatingGCMemory(this ConstraintExpression chain)
|
|
{
|
|
var constraint = new AllocatingGCMemoryConstraint();
|
|
chain.Append(constraint);
|
|
return constraint;
|
|
}
|
|
}
|
|
}
|