public void RemoveById()
        {
            var modCol = new StatModifierCollection(OperatorType.Add);

            modCol.Set("asdf", 22.4f);
            modCol.Remove("asdf");

            Assert.IsFalse(modCol.ListValues.Any(v => v.id == "asdf"));
        }
        public void RemoveByIdNull()
        {
            var modCol = new StatModifierCollection(OperatorType.Add);

            modCol.Remove(null);
        }
        public void RemoveByIdMissing()
        {
            var modCol = new StatModifierCollection(OperatorType.Add);

            modCol.Remove("asdf");
        }