- [X] Removes EventArgs - not needed - [X] Merges sequential checks - [X] Removes redundant type declarations
14 lines
342 B
C#
14 lines
342 B
C#
using System;
|
|
using Server.Network;
|
|
|
|
namespace Server.Tests.Network
|
|
{
|
|
public static class PacketTestUtilities
|
|
{
|
|
public static Span<byte> Compile(this Packet p) =>
|
|
p.Compile(false, out var length).AsSpan(0, length);
|
|
|
|
public static NetState CreateTestNetState() =>
|
|
new(new MockSocket());
|
|
}
|
|
}
|