Hal\Application\Formater\Details\Cli::getName PHP 메소드

getName() 공개 메소드

public getName ( )
    public function getName()
    {
        return 'Detailled CLI';
    }

Usage Example

예제 #1
0
 public function testFormaterHasName()
 {
     $validator = $this->getMockBuilder('\\Hal\\Application\\Rule\\Validator')->disableOriginalConstructor()->getMock();
     $bounds = new Bounds();
     $formater = new Cli($validator, $bounds);
     $this->assertNotNull($formater->getName());
 }