getName() public method

Returns the application name (that has to be the class namespace, e.g. example)
public getName ( ) : string
return string The application name
コード例 #1
0
ファイル: ApplicationTest.php プロジェクト: ruchee/appserver
 /**
  * Test if the getter/setter for the application name works.
  *
  * @return void
  */
 public function testGetName()
 {
     $this->assertEquals(ApplicationTest::NAME, $this->application->getName());
 }