Exemplo n.º 1
0
        public void IsHost_Set_Get()
        {
            var packet = new PlayerHost();

            packet.IsHost = true;

            Assert.True(packet.IsHost);
        }
Exemplo n.º 2
0
        public void PlayerIndex_Set_Get()
        {
            var packet = new PlayerHost();

            packet.PlayerIndex = 5;

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