Firstborn/Library/PackageCache/com.unity.test-framework@1..../UnityEngine.TestRunner/Assertions/Is.cs
Schaken-Mods b486678290 Library -Artifacts
Library -Artifacts
2023-03-28 12:24:16 -05:00

18 lines
629 B
C#

namespace UnityEngine.TestTools.Constraints
{
/// <summary>
/// Extension of the `Is` class in NUnit.Framework, see [Is](https://docs.microsoft.com/en-us/dotnet/api/nunit.framework.is?view=xamarin-ios-sdk-12).
/// </summary>
public class Is : NUnit.Framework.Is
{
/// <summary>
/// Creates a new instance of `AllocatingGCMemoryConstraint`.
/// </summary>
/// <returns>A new AllocatingGCMemoryConstraint object.</returns>
public static AllocatingGCMemoryConstraint AllocatingGCMemory()
{
return new AllocatingGCMemoryConstraint();
}
}
}