fix(ui): reentrancy guard on Health/AlarmSummary poll timers (arch-review S3)
Claude-Session: https://claude.ai/code/session_01MtdgwpEeCUn6cUA5f1LMPj
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
using ZB.MOM.WW.ScadaBridge.CentralUI.Services;
|
||||
using Xunit;
|
||||
|
||||
namespace ZB.MOM.WW.ScadaBridge.CentralUI.Tests;
|
||||
|
||||
public class PollGateTests
|
||||
{
|
||||
[Fact]
|
||||
public void TryEnter_SecondCallWhileHeld_ReturnsFalse()
|
||||
{
|
||||
var gate = new PollGate();
|
||||
Assert.True(gate.TryEnter());
|
||||
Assert.False(gate.TryEnter());
|
||||
gate.Exit();
|
||||
Assert.True(gate.TryEnter());
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user