Updated generated files

(cherry picked from commit 709ac8b5642c543c7b70c0423adac000b488f316)
This commit is contained in:
sven-n
2026-07-26 09:42:54 +02:00
committed by Acentech Dev
parent 0aedeb9ce8
commit cb810e8b0c
8 changed files with 457 additions and 217 deletions

View File

@@ -3903,4 +3903,18 @@ public class PacketStructureTests
Assert.That(actualLength, Is.EqualTo(expectedLength),
"Packet length mismatch: declared length does not match calculated size");
}
/// <summary>
/// Tests the packet size calculation for ChatCommandListRequest.
/// </summary>
[Test]
public void ChatCommandListRequest_PacketSizeValidation()
{
// Fixed-length packet validation
const int expectedLength = 4;
var actualLength = ChatCommandListRequestRef.Length;
Assert.That(actualLength, Is.EqualTo(expectedLength),
"Packet length mismatch: declared length does not match calculated size");
}
}