You've already forked lidgren-network-gen3
mirror of
https://github.com/lidgren/lidgren-network-gen3.git
synced 2026-05-06 10:21:09 +09:00
30 lines
968 B
C#
30 lines
968 B
C#
using System;
|
|
|
|
using Lidgren.Network;
|
|
|
|
namespace UnitTests
|
|
{
|
|
public static class MiscTests
|
|
{
|
|
public static void Run(NetPeer peer)
|
|
{
|
|
NetPeerConfiguration config = new NetPeerConfiguration("Test");
|
|
|
|
config.EnableMessageType(NetIncomingMessageType.UnconnectedData);
|
|
if (config.IsMessageTypeEnabled(NetIncomingMessageType.UnconnectedData) == false)
|
|
throw new NetException("setting enabled message types failed");
|
|
|
|
config.SetMessageTypeEnabled(NetIncomingMessageType.UnconnectedData, false);
|
|
if (config.IsMessageTypeEnabled(NetIncomingMessageType.UnconnectedData) == true)
|
|
throw new NetException("setting enabled message types failed");
|
|
|
|
Console.WriteLine("Misc tests OK");
|
|
|
|
Console.WriteLine("Hex test: " + NetUtility.ToHexString(new byte[]{0xDE,0xAD,0xBE,0xEF}));
|
|
|
|
if (NetUtility.BitsToHoldUInt64((ulong)UInt32.MaxValue + 1ul) != 33)
|
|
throw new NetException("BitsToHoldUInt64 failed");
|
|
}
|
|
}
|
|
}
|