예제 #1
0
        public void TestMethodUnion2()
        {
            PowerSet set1 = new PowerSet();
            PowerSet set2 = new PowerSet();
            PowerSet dict = new PowerSet();

            set1.put(22);
            set1.put(201);
            dict = set1.union(set2);
            Assert.AreEqual(2, dict.cnt);
        }