getName() public method

The tax name. Maximum length is 20 characters.
public getName ( ) : string
return string
Example #1
0
 /**
  * @depends testSerializationDeserialization
  * @param Tax $obj
  */
 public function testGetters($obj)
 {
     $this->assertEquals($obj->getId(), "TestSample");
     $this->assertEquals($obj->getName(), "TestSample");
     $this->assertEquals($obj->getPercent(), "12.34");
     $this->assertEquals($obj->getAmount(), CurrencyTest::getObject());
 }