Example #1
0
        public void ChestIndex_Set_Get()
        {
            var packet = new ChestModify();

            packet.ChestIndex = 10;

            Assert.Equal(10, packet.ChestIndex);
        }
Example #2
0
        public void Y_Set_Get()
        {
            var packet = new ChestModify();

            packet.Y = 50;

            Assert.Equal(50, packet.Y);
        }
Example #3
0
        public void Style_Set_Get()
        {
            var packet = new ChestModify();

            packet.Style = 1234;

            Assert.Equal(1234, packet.Style);
        }
Example #4
0
        public void Modification_Set_Get(ChestModification modification)
        {
            var packet = new ChestModify();

            packet.Modification = modification;

            Assert.Equal(modification, packet.Modification);
        }