servicepoint/crates/servicepoint_binding_cs/ServicePoint.Tests/BitmapTests.cs

13 lines
367 B
C#

namespace ServicePoint.Tests;
public class BitmapTests
{
[Fact]
public void UseAfterFree()
{
var bitmap = Bitmap.NewScreenSized();
_ = Command.BitmapLinearWin(0, 0, bitmap, CompressionCode.Uncompressed);
Assert.Throws<NullReferenceException>(() => _ = Command.BitmapLinearWin(0, 0, bitmap, CompressionCode.Uncompressed));
}
}