public void TestMethodDifference2() { PowerSet set1 = new PowerSet(); PowerSet set2 = new PowerSet(); PowerSet dict = new PowerSet(); set1.put(22); set2.put(22); set2.put("hard"); dict = set1.difference(set2); Assert.AreEqual(0, dict.dict.Count); }