Exemplo n.º 1
0
        public void AddRangeIfTestNullCheck()
        {
            // ReSharper disable once AssignNullToNotNullAttribute
            Action test = () => Extensions.AddRangeIf(null, x => true, "test0", "test1", "test2");

            test.ShouldThrow <NullReferenceException>();
        }