getName() 공개 메소드

The tax name. Maximum length is 20 characters.
public getName ( ) : string
리턴 string
예제 #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());
 }