Tests.when_testing_list_for_null_or_empty.then_empty_list_is_null_or_empty C# (CSharp) Method

then_empty_list_is_null_or_empty() private method

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