public void ClearInstantly_Unprocessed_AllItemsRemoved()
        {
            var list = new DelayedList <object>();

            Fill(list, 5);
            list.ProcessPending();
            list.ClearInstantly();

            Assert.IsEmpty(list);
        }