This repository has been archived on 2025-04-28. You can view files and clone it, but cannot push or open issues or pull requests.
ARPlusSystem/ARPlusSystem-250418/Library/PackageCache/com.unity.test-framework@1..../UnityEngine.TestRunner/Assertions/Is.cs

18 lines
629 B
C#
Raw Normal View History

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();
}
}
}