Esempio n. 1
0
        public void ItemIdCollectionIndexOf()
        {
            tlog.Debug(tag, $"ItemIdCollectionIndexOf START");

            uint[] itemId = new uint[] { 1, 2, 3, 4 };
            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(2, testingTarget.IndexOf(3), "Should be equal!");

            testingTarget.Dispose();
            tlog.Debug(tag, $"ItemIdCollectionIndexOf END (OK)");
        }