Esempio n. 1
0
 /**
  * setSymbol() and getSymbol() should set and get the symbol, respectively
  */
 public function testSetGetSymbol()
 {
     $character = '+';
     $symbol = new Symbol();
     $symbol->setSymbol($character);
     $expected = $character;
     $actual = $symbol->getSymbol();
     $this->assertEquals($expected, $actual);
     return;
 }