__toString() public méthode

protected $symbol;
public __toString ( )
Exemple #1
0
 public function testGettersSetters()
 {
     $currency = new Currency();
     $currency->setLabel('EUR');
     $this->assertEquals('EUR', $currency->getLabel());
     $this->assertEquals('EUR', $currency->__toString());
 }