hasMinutes() 공개 메소드

public hasMinutes ( $minutes, $failMessage = null )
예제 #1
0
 public function testHasMinutes()
 {
     $this->if($asserter = new sut($generator = new asserter\generator()))->exception(function () use($asserter) {
         $asserter->hasMinutes(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->hasMinutes(1);
     })->isInstanceOf('mageekguy\\atoum\\asserter\\exception')->hasMessage(sprintf($generator->getLocale()->_('Minutes are %02d instead of %02d'), 2, 1))->object($asserter->hasMinutes('02'))->isIdenticalTo($asserter)->object($asserter->hasMinutes('2'))->isIdenticalTo($asserter)->object($asserter->hasMinutes(2))->isIdenticalTo($asserter);
 }