File size: 629 Bytes
18a519f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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();
        }
    }
}