Beispiel #1
0
 public function testBitmap()
 {
     $bitmap = new Bitmap();
     $bitmap->setBit(0);
     $bitmap->setBit(2);
     $this->assertEquals('101', $bitmap->getBinary());
 }