コード例 #1
0
 /**
  */
 public function testConstructNull()
 {
     $object = new HashTable();
     $this->assertEquals(0, $object->count());
     $this->assertNull($object->getByIndex());
     $this->assertNull($object->getByHashCode());
     $this->assertInternalType('array', $object->toArray());
     $this->assertEmpty($object->toArray());
 }