Esempio n. 1
0
        public static void NullCull_ListType_InitialzedCorrectly()
        {
            var lt = new ListTypes();

            lt.NullCull();
            Assert.NotNull(lt.List);
            Assert.That(lt.List.GetType(), Is.EqualTo(typeof(List <string>)));
        }