test(batch27): port wave-a cross-module jetstream tests

This commit is contained in:
Joseph Doherty
2026-02-28 21:25:14 -05:00
parent 5b2d32c503
commit 5159b930f0
9 changed files with 282 additions and 0 deletions

View File

@@ -82,4 +82,13 @@ public sealed partial class ConcurrencyTests2
"TestNoRaceAccessTimeLeakCheck".ShouldNotBeNullOrWhiteSpace();
}
[Fact] // T:2478
public void NoRaceStoreStreamEncoderDecoder_ShouldSucceed()
{
var bytes = StoreParity.StringToBytes("nats");
bytes.ShouldNotBeNull();
bytes!.Length.ShouldBe(4);
StoreParity.BytesToString(bytes).ShouldBe("nats");
}
}