No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Is.cs 629B

1234567891011121314151617
  1. namespace UnityEngine.TestTools.Constraints
  2. {
  3. /// <summary>
  4. /// 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).
  5. /// </summary>
  6. public class Is : NUnit.Framework.Is
  7. {
  8. /// <summary>
  9. /// Creates a new instance of `AllocatingGCMemoryConstraint`.
  10. /// </summary>
  11. /// <returns>A new AllocatingGCMemoryConstraint object.</returns>
  12. public static AllocatingGCMemoryConstraint AllocatingGCMemory()
  13. {
  14. return new AllocatingGCMemoryConstraint();
  15. }
  16. }
  17. }