mirror of https://github.com/SixLabors/ImageSharp
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.
30 lines
909 B
30 lines
909 B
// Copyright (c) Six Labors.
|
|
// Licensed under the Six Labors Split License.
|
|
|
|
using System.Reflection;
|
|
using Xunit.Sdk;
|
|
|
|
namespace SixLabors.ImageSharp.Tests;
|
|
|
|
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Method, AllowMultiple = false, Inherited = true)]
|
|
public class ValidateDisposedMemoryAllocationsAttribute : BeforeAfterTestAttribute
|
|
{
|
|
private readonly int expected = 0;
|
|
|
|
public ValidateDisposedMemoryAllocationsAttribute()
|
|
: this(0)
|
|
{
|
|
}
|
|
|
|
public ValidateDisposedMemoryAllocationsAttribute(int expected)
|
|
=> this.expected = expected;
|
|
|
|
public override void Before(MethodInfo methodUnderTest)
|
|
=> MemoryAllocatorValidator.MonitorAllocations();
|
|
|
|
public override void After(MethodInfo methodUnderTest)
|
|
{
|
|
MemoryAllocatorValidator.ValidateAllocations(this.expected);
|
|
MemoryAllocatorValidator.StopMonitoringAllocations();
|
|
}
|
|
}
|
|
|