public void ItemIdCollectionRemove() { tlog.Debug(tag, $"ItemIdCollectionRemove START"); uint[] itemId = new uint[] { 1, 2, 3, 4, 3 }; global::System.Collections.ICollection c = itemId; var testingTarget = new ItemIdCollection(c); Assert.IsNotNull(testingTarget, "Should be not null!"); Assert.IsInstanceOf <ItemIdCollection>(testingTarget, "Should be an Instance of ItemIdCollection!"); testingTarget.Capacity = 5; Assert.AreEqual(true, testingTarget.Remove(3), "Should be equal!"); testingTarget.Dispose(); tlog.Debug(tag, $"ItemIdCollectionRemove END (OK)"); }