/**
  * #@test
  */
 public function I_can_get_property_easily()
 {
     $beauty = new Beauty($this->getAgility($agilityValue = 123), $this->getKnack($knackValue = 456), $this->getCharisma($charismaValue = 789));
     self::assertSame('beauty', $beauty->getCode());
     self::assertSame('beauty', Beauty::BEAUTY);
     self::assertSame($this->calculateValue($agilityValue, $knackValue, $charismaValue), $beauty->getValue());
     self::assertSame((string) $this->calculateValue($agilityValue, $knackValue, $charismaValue), "{$beauty}");
     return $beauty;
 }