Beispiel #1
0
        public void Setup()
        {
            sl = new List <int>();
            sl.Add(1);
            sl.Add(2);

            acl = new ACList <int>();
        }
Beispiel #2
0
        public void TestAddAll()
        {
            ACList <string> sacl = new ACList <string>();

            sacl.Add("A");
            sacl.Add("B");
            sacl.Add("C");

            testHashSet.AddAll(sacl);

            Assert.AreEqual(3, testHashSet.Count);
        }