bea2dce063
test
15 lines
398 B
C#
15 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;
|
|
}
|
|
}
|
|
}
|