Beispiel #1
0
        public void TestNodeDataLinkedListValue()
        {
            MyLL <int>         llinner = new MyLL <int>(1);
            MyLL <MyLL <int> > llouter = new MyLL <MyLL <int> >(llinner);
            var actual = llouter.GetHeadData();

            Assert.IsInstanceOfType(actual, llinner.GetType());
        }