Example #1
0
 /**
  * @covers Character::getVpc
  */
 public function testGetVpc()
 {
     $this->assertEquals(0, $this->character->getVpc());
     $this->character->setMorph([1, 1, 1, 1, 1, 1, 1, 1]);
     $this->character->setSlot(EVisualSlot::FACE_SLOT, 1, 1);
     $this->character->setGabarit([1, 1, 1, 1, 1]);
     // properties are all set to 1
     $vpc = '1200958908699209';
     $this->assertEquals($vpc, $this->character->getVpc());
 }