public void TestMethodIntersection2() { PowerSet set1 = new PowerSet(); PowerSet set2 = new PowerSet(); PowerSet dict = new PowerSet(); set1.put(22); set1.put(201); set2.put("LOL"); dict = set1.intersection(set2); Assert.AreEqual(0, dict.cnt); }