hasHours() 공개 메소드

public hasHours ( $hours, $failMessage = null )
예제 #1
0
 public function testHasHours()
 {
     $this->if($asserter = new sut($generator = new asserter\generator()))->exception(function () use($asserter) {
         $asserter->hasHours(rand(0, PHP_INT_MAX));
     })->isInstanceOf('mageekguy\\atoum\\exceptions\\logic')->hasMessage('Instance of \\dateTime is undefined')->if($asserter->setWith($dateTime = new \DateTime('01:02:03')))->then->exception(function () use(&$line, $asserter) {
         $line = __LINE__;
         $asserter->hasHours(2);
     })->isInstanceOf('mageekguy\\atoum\\asserter\\exception')->hasMessage(sprintf($generator->getLocale()->_('Hours are %02d instead of %02d'), 1, 2))->object($asserter->hasHours('01'))->isIdenticalTo($asserter)->object($asserter->hasHours('1'))->isIdenticalTo($asserter)->object($asserter->hasHours(1))->isIdenticalTo($asserter);
 }