mageekguy\atoum\report\fields\test\memory\cli::getTitleColorizer PHP 메소드

getTitleColorizer() 공개 메소드

public getTitleColorizer ( )
    public function getTitleColorizer()
    {
        return $this->titleColorizer;
    }

Usage Example

예제 #1
0
파일: cli.php 프로젝트: xihewang/atoum
 public function testSetTitleColorizer()
 {
     $this->if($field = new test\memory\cli())->then->object($field->setTitleColorizer($colorizer = new colorizer()))->isIdenticalTo($field)->object($field->getTitleColorizer())->isIdenticalTo($colorizer)->object($field->setTitleColorizer())->isIdenticalTo($field)->object($field->getTitleColorizer())->isNotIdenticalTo($colorizer)->isEqualTo(new colorizer());
 }