Esempio n. 1
0
 public void IsEmpty() {
     Assert.IsFalse (Set.IsEmpty);
     ISet mySet = new ImmutableSet (new HybridSet ());
     Assert.IsTrue (mySet.IsEmpty);
 }       
Esempio n. 2
0
 public void SetUp()
 {
     Set = new ImmutableSet(new HybridSet(new object [] { 1, 2, 3 }));
 }
Esempio n. 3
0
 public void SetUp () {
     Set = new ImmutableSet (new HybridSet (new object [] {1, 2, 3}));
 }