Beispiel #1
0
 /**
  * @covers Character::getVpb
  */
 public function testGetVpb()
 {
     $this->assertEquals(0, $this->character->getVpb());
     $this->character->setSlot(EVisualSlot::HANDS_SLOT, 1, 1);
     $this->character->setSlot(EVisualSlot::FEET_SLOT, 1, 1);
     // Name=0, HandsModel=1, HandsColor=1, FeetModel=1, FeetColor=1, RTrail=0, LTrail=0
     $vpb = '137741008896';
     $this->assertEquals($vpb, $this->character->getVpb());
 }