public void RemoveItem()
 {
     _sut.GetWeightings().Should().HaveCount(5);
     _sut.RemoveItem("1");
     _sut.GetWeightings().Should().HaveCount(4);
 }