Beispiel #1
0
        public void IsInPvp_Set_Get()
        {
            var packet = new PlayerPvp();

            packet.IsInPvp = true;

            Assert.True(packet.IsInPvp);
        }
Beispiel #2
0
        public void PlayerIndex_Set_Get()
        {
            var packet = new PlayerPvp();

            packet.PlayerIndex = 5;

            Assert.Equal(5, packet.PlayerIndex);
        }