Example #1
0
 /**
  * @covers Character::setVpc
  */
 public function testSetVpc()
 {
     // properties are all set to 1
     $vpc = '1200958908699209';
     $this->character->setVpc($vpc);
     $this->assertEquals([1, 1, 1, 1, 1, 1, 1, 1], $this->character->getMorph());
     $this->assertEquals([1, 1], $this->character->getSlot(EVisualSlot::FACE_SLOT));
     $this->assertEquals([1, 1, 1, 1, 1], $this->character->getGabarit());
 }