示例#1
0
 public function testRemove()
 {
     $set = new Set();
     $set->add('hello', 'world', 100, function () {
     }, array(3, 2, 1));
     $set->remove('world');
     $this->assertEquals(100, $set[1]);
 }