public void ChestIndex_Set_Get() { var packet = new ChestModify(); packet.ChestIndex = 10; Assert.Equal(10, packet.ChestIndex); }
public void Y_Set_Get() { var packet = new ChestModify(); packet.Y = 50; Assert.Equal(50, packet.Y); }
public void Style_Set_Get() { var packet = new ChestModify(); packet.Style = 1234; Assert.Equal(1234, packet.Style); }
public void Modification_Set_Get(ChestModification modification) { var packet = new ChestModify(); packet.Modification = modification; Assert.Equal(modification, packet.Modification); }