Ejemplo n.º 1
0
        public void RemoveIfTestNullCheck()
        {
            // ReSharper disable once AssignNullToNotNullAttribute
            Action test = () => CollectionTEx.RemoveIf(null, "", x => true);

            Assert.Throws <ArgumentNullException>(test);
        }