Beispiel #1
0
 public function testClear()
 {
     // Remove the following lines when you implement this test.
     $this->object->clear();
     $this->assertTrue($this->object->count() == 0);
 }
Beispiel #2
0
 public function test_count_HasSome()
 {
     $h = new HashSet(['a', 'b']);
     $this->assertEquals(2, $h->count());
 }