Esempio n. 1
0
        public void ItemIdCollectionClear()
        {
            tlog.Debug(tag, $"ItemIdCollectionClear 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!");
            tlog.Debug(tag, "Count : " + testingTarget.Count.ToString());

            try
            {
                testingTarget.Clear();
                tlog.Debug(tag, "Count : " + testingTarget.Count.ToString());
            }
            catch (Exception e)
            {
                tlog.Debug(tag, e.Message.ToString());
                Assert.Fail("Caught Exception: Failed!");
            }

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