mirror of
https://github.com/cccb/servicepoint.git
synced 2025-01-19 02:20:12 +01:00
13 lines
367 B
C#
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));
|
||
|
}
|
||
|
}
|