Beispiel #1
0
 public function testGetObjectLengthWithVeryLongBitString()
 {
     $hexString = '0x' . str_repeat('FF', 1024);
     $object = new BitString($hexString);
     $this->assertEquals(1 + 3 + 1 + 1024, $object->getObjectLength());
 }