mirror of
https://github.com/cccb/servicepoint.git
synced 2025-01-19 02:20:12 +01:00
13 lines
311 B
C#
13 lines
311 B
C#
namespace ServicePoint.Tests;
|
|
|
|
public class BBrightnessGridTests
|
|
{
|
|
[Fact]
|
|
public void UseAfterFree()
|
|
{
|
|
var grid = new BrightnessGrid(23, 42);
|
|
_ = Command.CharBrightness(0, 0, grid);
|
|
Assert.Throws<NullReferenceException>(() => _ = Command.CharBrightness(0, 0, grid));
|
|
}
|
|
}
|