We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0fe856 commit 8842224Copy full SHA for 8842224
Tests/GameFrameX.Tests/ActorIdGeneratorTest.cs
@@ -10,16 +10,4 @@ public class ActorIdGeneratorTest
10
public void Setup()
11
{
12
}
13
-
14
- [Test]
15
- public void compress()
16
- {
17
- var actorId = ActorIdGenerator.GetActorId((ushort)ActorType.World, 1000);
18
19
- var type = ActorIdGenerator.GetActorType(actorId);
20
- var serverId = ActorIdGenerator.GetServerId(actorId);
21
22
- Assert.That(type == (ushort)ActorType.World, Is.EqualTo(true));
23
- Assert.That(serverId == 1000, Is.EqualTo(true));
24
- }
25
0 commit comments