mageekguy\atoum\iterators\recursives\directory\factory::dotsAreAccepted PHP 메소드

dotsAreAccepted() 공개 메소드

public dotsAreAccepted ( )
    public function dotsAreAccepted()
    {
        return $this->acceptDots;
    }

Usage Example

예제 #1
0
파일: factory.php 프로젝트: xihewang/atoum
 public function testRefuseDots()
 {
     $this->if($iterator = new testedClass())->then->object($iterator->refuseDots())->isIdenticalTo($iterator)->boolean($iterator->dotsAreAccepted())->isFalse();
 }