Tests.when_testing_list_for_null_or_empty.then_null_list_is_null_or_empty C# (CSharp) Method

then_null_list_is_null_or_empty() private method

private then_null_list_is_null_or_empty ( ) : void
return void
        public void then_null_list_is_null_or_empty()
        {
            List<int> list = null;
            Assert.IsTrue(list.IsNullOrEmpty());
        }