예제 #1
0
        public void IsHost_Set_Get()
        {
            var packet = new PlayerHost();

            packet.IsHost = true;

            Assert.True(packet.IsHost);
        }
예제 #2
0
        public void PlayerIndex_Set_Get()
        {
            var packet = new PlayerHost();

            packet.PlayerIndex = 5;

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