How to use testRun method of inheritedTagsTest class

Best Atoum code snippet using inheritedTagsTest.testRun

test.php

Source:test.php Github

copy

Full Screen

...103 public function testClassConstants()104 {105 $this106 ->string(atoum\test::testMethodPrefix)->isEqualTo('test')107 ->string(atoum\test::runStart)->isEqualTo('testRunStart')108 ->string(atoum\test::beforeSetUp)->isEqualTo('beforeTestSetUp')109 ->string(atoum\test::afterSetUp)->isEqualTo('afterTestSetUp')110 ->string(atoum\test::beforeTestMethod)->isEqualTo('beforeTestMethod')111 ->string(atoum\test::fail)->isEqualTo('testAssertionFail')112 ->string(atoum\test::error)->isEqualTo('testError')113 ->string(atoum\test::uncompleted)->isEqualTo('testUncompleted')114 ->string(atoum\test::skipped)->isEqualTo('testSkipped')115 ->string(atoum\test::exception)->isEqualTo('testException')116 ->string(atoum\test::success)->isEqualTo('testAssertionSuccess')117 ->string(atoum\test::afterTestMethod)->isEqualTo('afterTestMethod')118 ->string(atoum\test::beforeTearDown)->isEqualTo('beforeTestTearDown')119 ->string(atoum\test::afterTearDown)->isEqualTo('afterTestTearDown')120 ->string(atoum\test::runStop)->isEqualTo('testRunStop')121 ->string(atoum\test::defaultNamespace)->isEqualTo('#(?:^|\\\\)tests?\\\\units?\\\\#i')122 ->string(atoum\test::defaultMethodPrefix)->isEqualTo('#^(?:test|_*[^_]+_should_)#i')123 ;124 }125 public function test__construct()126 {127 $this128 ->if($test = new emptyTest())129 ->then130 ->object($test->getScore())->isInstanceOf('mageekguy\atoum\score')131 ->object($test->getLocale())->isEqualTo(new atoum\locale())132 ->object($test->getAdapter())->isEqualTo(new atoum\adapter())133 ->object($test->getPhpFunctionMocker())->isInstanceOf('mageekguy\atoum\php\mocker\funktion')134 ->object($test->getPhpConstantMocker())->isInstanceOf('mageekguy\atoum\php\mocker\constant')135 ->object($test->getFactoryBuilder())->isInstanceOf('mageekguy\atoum\factory\builder\closure')136 ->boolean($test->isIgnored())->isTrue()137 ->boolean($test->debugModeIsEnabled())->isFalse()138 ->array($test->getAllTags())->isEqualTo($tags = array('empty', 'fake', 'dummy'))139 ->array($test->getTags())->isEqualTo($tags)140 ->array($test->getMethodTags())->isEmpty()141 ->array($test->getDataProviders())->isEmpty()142 ->integer($test->getMaxChildrenNumber())->isEqualTo(666)143 ->boolean($test->codeCoverageIsEnabled())->isEqualTo(extension_loaded('xdebug'))144 ->string($test->getTestNamespace())->isEqualTo(atoum\test::defaultNamespace)145 ->integer($test->getMaxChildrenNumber())->isEqualTo(666)146 ->variable($test->getBootstrapFile())->isNull()147 ->array($test->getClassPhpVersions())->isEmpty()148 ->array($test->getMandatoryClassExtensions())->isEmpty()149 ->array($test->getMandatoryMethodExtensions())->isEmpty()150 ->variable($test->getXdebugConfig())->isNull()151 ;152 }153 public function test__toString()154 {155 $this->castToString($this)->isEqualTo(__CLASS__);156 }157 public function test__get()158 {159 $this160 ->if($test = new emptyTest())161 ->then162 ->object($test->assert)->isInstanceOf('mageekguy\atoum\test')163 ->object($test->define)->isInstanceOf('mageekguy\atoum\test\assertion\aliaser')164 ->object($test->mockGenerator)->isInstanceOf('mageekguy\atoum\mock\generator')165 ->if($test->setMockGenerator($mockGenerator = new atoum\test\mock\generator($this)))166 ->then167 ->object($test->mockGenerator)->isIdenticalTo($mockGenerator)168 ->if($test->setAsserterGenerator($asserterGenerator = new atoum\test\asserter\generator(new emptyTest())))169 ->then170 ->object($test->assert)->isIdenticalTo($test)171 ->variable($test->exception)->isNull()172 ->exception(function() use ($test, & $property) { $test->{$property = uniqid()}; })173 ->isInstanceOf('mageekguy\atoum\exceptions\logic\invalidArgument')174 ->hasMessage('Asserter \'' . $property . '\' does not exist')175 ->exception($test->exception)176 ->isInstanceOf('mageekguy\atoum\exceptions\logic\invalidArgument')177 ->hasMessage('Asserter \'' . $property . '\' does not exist')178 ;179 }180 public function test__set()181 {182 $this183 ->given(184 $test = new emptyTest(),185 $test->setAssertionManager($assertionManager = new \mock\mageekguy\atoum\test\assertion\manager())186 )187 ->if($test->{$event = uniqid()} = $handler = function() {})188 ->then189 ->mock($assertionManager)->call('setHandler')->withArguments($event, $handler)->once()190 ;191 }192 public function testEnableDebugMode()193 {194 $this195 ->if($test = new emptyTest())196 ->then197 ->object($test->enableDebugMode())->isIdenticalTo($test)198 ->boolean($test->debugModeIsEnabled())->isTrue()199 ->object($test->enableDebugMode())->isIdenticalTo($test)200 ->boolean($test->debugModeIsEnabled())->isTrue()201 ;202 }203 public function testDisableDebugMode()204 {205 $this206 ->if($test = new emptyTest())207 ->then208 ->object($test->disableDebugMode())->isIdenticalTo($test)209 ->boolean($test->debugModeIsEnabled())->isFalse()210 ->object($test->disableDebugMode())->isIdenticalTo($test)211 ->boolean($test->debugModeIsEnabled())->isFalse()212 ->if($test->enableDebugMode())213 ->then214 ->object($test->disableDebugMode())->isIdenticalTo($test)215 ->boolean($test->debugModeIsEnabled())->isFalse()216 ;217 }218 public function testEnableCodeCoverage()219 {220 $this221 ->assert('Code coverage must be enabled only if xdebug is available')222 ->if($adapter = new atoum\test\adapter())223 ->and($adapter->extension_loaded = function($extension) { return $extension == 'xdebug'; })224 ->and($test = new emptyTest($adapter))225 ->then226 ->boolean($test->codeCoverageIsEnabled())->isTrue()227 ->object($test->enableCodeCoverage())->isIdenticalTo($test)228 ->boolean($test->codeCoverageIsEnabled())->isTrue()229 ->if($test->disableCodeCoverage())230 ->then231 ->boolean($test->codeCoverageIsEnabled())->isFalse()232 ->object($test->enableCodeCoverage())->isIdenticalTo($test)233 ->boolean($test->codeCoverageIsEnabled())->isTrue()234 ->assert('Code coverage must not be enabled if xdebug is not available')235 ->if($adapter->extension_loaded = function($extension) { return $extension != 'xdebug'; })236 ->and($test = new emptyTest($adapter))237 ->then238 ->boolean($test->codeCoverageIsEnabled())->isFalse()239 ->object($test->enableCodeCoverage())->isIdenticalTo($test)240 ->boolean($test->codeCoverageIsEnabled())->isFalse()241 ;242 }243 public function testDisableCodeCoverage()244 {245 $this246 ->if($adapter = new atoum\test\adapter())247 ->and($adapter->extension_loaded = true)248 ->and($test = new emptyTest($adapter))249 ->then250 ->boolean($test->codeCoverageIsEnabled())->isTrue()251 ->object($test->disableCodeCoverage())->isIdenticalTo($test)252 ->boolean($test->codeCoverageIsEnabled())->isFalse()253 ->if($test->enableCodeCoverage())254 ->then255 ->boolean($test->codeCoverageIsEnabled())->isTrue()256 ->object($test->disableCodeCoverage())->isIdenticalTo($test)257 ->boolean($test->codeCoverageIsEnabled())->isFalse()258 ;259 }260 public function testGetMockGenerator()261 {262 $this263 ->if($test = new emptyTest())264 ->then265 ->object($test->getMockGenerator())->isInstanceOf('mageekguy\atoum\mock\generator')266 ->if($test->setMockGenerator($mockGenerator = new atoum\test\mock\generator($this)))267 ->then268 ->object($test->getMockGenerator())->isIdenticalTo($mockGenerator)269 ->object($mockGenerator->getTest())->isIdenticalTo($test)270 ;271 }272 public function testSetMockGenerator()273 {274 $this275 ->if($test = new emptyTest())276 ->then277 ->object($test->setMockGenerator($mockGenerator = new atoum\test\mock\generator($this)))->isIdenticalTo($test)278 ->object($test->getMockGenerator())->isIdenticalTo($mockGenerator)279 ->object($mockGenerator->getTest())->isIdenticalTo($test)280 ;281 }282 public function testSetMockAutoloader()283 {284 $this285 ->if($test = new emptyTest())286 ->then287 ->object($test->setMockAutoloader($mockAutoloader = new atoum\autoloader\mock()))->isIdenticalTo($test)288 ->object($test->getMockAutoloader())->isIdenticalTo($mockAutoloader)289 ;290 }291 public function testGetAsserterGenerator()292 {293 $this294 ->if($test = new emptyTest())295 ->then296 ->object($test->getAsserterGenerator())->isInstanceOf('mageekguy\atoum\test\asserter\generator')297 ->if($test->setAsserterGenerator($asserterGenerator = new atoum\test\asserter\generator($this)))298 ->then299 ->object($test->getAsserterGenerator())->isIdenticalTo($asserterGenerator)300 ->object($asserterGenerator->getTest())->isIdenticalTo($test)301 ;302 }303 public function testSetAsserterGenerator()304 {305 $this306 ->if($test = new emptyTest())307 ->then308 ->object($test->setAsserterGenerator($asserterGenerator = new atoum\test\asserter\generator($test)))->isIdenticalTo($test)309 ->object($test->getAsserterGenerator())->isIdenticalTo($asserterGenerator)310 ->object($asserterGenerator->getTest())->isIdenticalTo($test)311 ->object($asserterGenerator->getLocale())->isIdenticalTo($test->getLocale())312 ;313 }314 public function testGetFactoryBuilder()315 {316 $this317 ->if($test = new emptyTest())318 ->then319 ->object($test->getFactoryBuilder())->isInstanceOf('mageekguy\atoum\factory\builder\closure')320 ->if($test->setFactoryBuilder($factoryBuilder = new \mock\atoum\factory\builder()))321 ->then322 ->object($test->getFactoryBuilder())->isIdenticalTo($factoryBuilder)323 ;324 }325 public function testSetFactoryBuilder()326 {327 $this328 ->if($test = new emptyTest())329 ->then330 ->object($test->setFactoryBuilder($factoryBuilder = new \mock\atoum\factory\builder()))->isIdenticalTo($test)331 ->object($test->getFactoryBuilder())->isIdenticalTo($factoryBuilder)332 ->object($test->setFactoryBuilder())->isIdenticalTo($test)333 ->object($test->getFactoryBuilder())334 ->isEqualTo(new atoum\Factory\builder\closure())335 ->isNotIdenticalTo($factoryBuilder)336 ;337 }338 public function testSetPhpFunktionMocker()339 {340 $this341 ->if($test = new emptyTest())342 ->then343 ->object($test->setPhpFunctionMocker($phpFunctionMocker = new atoum\php\mocker\funktion()))->isIdenticalTo($test)344 ->object($test->getPhpFunctionMocker())->isIdenticalTo($phpFunctionMocker)345 ->object($test->setPhpFunctionMocker())->isIdenticalTo($test)346 ->object($test->getPhpFunctionMocker())347 ->isNotIdenticalTo($phpFunctionMocker)348 ->isInstanceOf('mageekguy\atoum\php\mocker\funktion')349 ;350 }351 public function testSetTestNamespace()352 {353 $this354 ->if($test = new self())355 ->then356 ->object($test->setTestNamespace($testNamespace = uniqid('_')))->isIdenticalTo($test)357 ->string($test->getTestNamespace())->isEqualTo($testNamespace)358 ->object($test->setTestNamespace('\\' . $testNamespace))->isIdenticalTo($test)359 ->string($test->getTestNamespace())->isEqualTo($testNamespace)360 ->object($test->setTestNamespace($testNamespace . '\\'))->isIdenticalTo($test)361 ->string($test->getTestNamespace())->isEqualTo($testNamespace)362 ->object($test->setTestNamespace('\\' . $testNamespace . '\\'))->isIdenticalTo($test)363 ->string($test->getTestNamespace())->isEqualTo($testNamespace)364 ->object($test->setTestNamespace($testNamespace = uniqid('_') . '\\' . $testNamespace))->isIdenticalTo($test)365 ->string($test->getTestNamespace())->isEqualTo($testNamespace)366 ->object($test->setTestNamespace('\\' . $testNamespace))->isIdenticalTo($test)367 ->string($test->getTestNamespace())->isEqualTo($testNamespace)368 ->object($test->setTestNamespace($testNamespace . '\\'))->isIdenticalTo($test)369 ->string($test->getTestNamespace())->isEqualTo($testNamespace)370 ->object($test->setTestNamespace('\\' . $testNamespace . '\\'))->isIdenticalTo($test)371 ->string($test->getTestNamespace())->isEqualTo($testNamespace)372 ->object($test->setTestNamespace($testNamespace = '_' . rand(0, PHP_INT_MAX)))->isIdenticalTo($test)373 ->string($test->getTestNamespace())->isEqualTo((string) $testNamespace)374 ->object($test->setTestNamespace('\\' . $testNamespace))->isIdenticalTo($test)375 ->string($test->getTestNamespace())->isEqualTo($testNamespace)376 ->object($test->setTestNamespace($testNamespace . '\\'))->isIdenticalTo($test)377 ->string($test->getTestNamespace())->isEqualTo($testNamespace)378 ->object($test->setTestNamespace('\\' . $testNamespace . '\\'))->isIdenticalTo($test)379 ->string($test->getTestNamespace())->isEqualTo($testNamespace)380 ->exception(function() use ($test) {381 $test->setTestNamespace('');382 }383 )384 ->isInstanceOf('mageekguy\atoum\exceptions\logic\invalidArgument')385 ->hasMessage('Test namespace must not be empty')386 ->exception(function() use ($test) {387 $test->setTestNamespace('0');388 }389 )390 ->isInstanceOf('mageekguy\atoum\exceptions\logic\invalidArgument')391 ->hasMessage('Test namespace must be a valid regex or identifier')392 ->exception(function() use ($test) {393 $test->setTestNamespace(uniqid('_') . '\\\\' . uniqid('_'));394 }395 )396 ->isInstanceOf('mageekguy\atoum\exceptions\logic\invalidArgument')397 ->hasMessage('Test namespace must be a valid regex or identifier')398 ;399 }400 public function testGetTestNamespace()401 {402 $this403 ->if($test = new self())404 ->then405 ->string($test->getTestNamespace())->isEqualTo(atoum\test::defaultNamespace)406 ->if($test->setTestNamespace($testNamespace = uniqid('_')))407 ->then408 ->string($test->getTestNamespace())->isEqualTo($testNamespace)409 ;410 }411 public function testSetTestMethodPrefix()412 {413 $this414 ->if($test = new self())415 ->then416 ->object($test->setTestMethodPrefix($testMethodPrefix = uniqid('_')))->isIdenticalTo($test)417 ->string($test->getTestMethodPrefix())->isEqualTo($testMethodPrefix)418 ->object($test->setTestMethodPrefix($testMethodPrefix = '/^test/i'))->isIdenticalTo($test)419 ->string($test->getTestMethodPrefix())->isEqualTo($testMethodPrefix)420 ->object($test->setTestMethodPrefix($testMethodPrefix = ('_'.rand(0, PHP_INT_MAX))))->isIdenticalTo($test)421 ->string($test->getTestMethodPrefix())->isEqualTo((string) $testMethodPrefix)422 ->object($test->setTestMethodPrefix($testMethodPrefix = "_0"))->isIdenticalTo($test)423 ->string($test->getTestMethodPrefix())->isEqualTo((string) $testMethodPrefix)424 ->exception(function() use ($test) {425 $test->setTestMethodPrefix('');426 }427 )428 ->isInstanceOf('mageekguy\atoum\exceptions\logic\invalidArgument')429 ->hasMessage('Test method prefix must not be empty')430 ->exception(function() use ($test) {431 $test->setTestMethodPrefix('0');432 }433 )434 ->isInstanceOf('mageekguy\atoum\exceptions\logic\invalidArgument')435 ->hasMessage('Test method prefix must a valid regex or identifier')436 ->exception(function() use ($test) {437 $test->setTestMethodPrefix('/:(/');438 }439 )440 ->isInstanceOf('mageekguy\atoum\exceptions\logic\invalidArgument')441 ->hasMessage('Test method prefix must a valid regex or identifier')442 ;443 }444 public function testGetTestMethodPrefix()445 {446 $this447 ->if($test = new self())448 ->then449 ->string($test->getTestMethodPrefix())->isEqualTo(atoum\test::defaultMethodPrefix)450 ->if($test->setTestMethodPrefix($testMethodPrefix = uniqid('_')))451 ->then452 ->string($test->getTestMethodPrefix())->isEqualTo($testMethodPrefix)453 ;454 }455 public function testGetTestedClassName()456 {457 $mockClass = '\mock\\' . __CLASS__;458 $this459 ->if($test = new $mockClass())460 ->and($test->getMockController()->getClass = $testClass = 'foo')461 ->then462 ->exception(function() use ($test) { $test->getTestedClassName(); })463 ->isInstanceOf('mageekguy\atoum\exceptions\runtime')464 ->hasMessage('Test class \'' . $testClass . '\' is not in a namespace which match pattern \'' . $test->getTestNamespace() . '\'')465 ->if($test->getMockController()->getClass = 'tests\units\foo')466 ->then467 ->string($test->getTestedClassName())->isEqualTo('foo')468 ;469 }470 public function testGetTestedClassPath()471 {472 $this473 ->if($testedClass = new \reflectionClass($this->getTestedClassName()))474 ->then475 ->string($this->getTestedClassPath())->isEqualTo($testedClass->getFilename())476 ;477 }478 public function testGetAdapter()479 {480 $this481 ->if($test = new emptyTest())482 ->then483 ->object($test->getAdapter())->isInstanceOf('mageekguy\atoum\adapter')484 ;485 }486 public function testSetAdapter()487 {488 $this489 ->if($test = new emptyTest())490 ->then491 ->object($test->setAdapter($adapter = new atoum\test\adapter()))->isIdenticalTo($test)492 ->object($test->getAdapter())->isIdenticalTo($adapter)493 ;494 }495 public function testSetLocale()496 {497 $this498 ->if($test = new emptyTest())499 ->then500 ->object($test->setLocale($locale = new atoum\locale()))->isIdenticalTo($test)501 ->object($test->getLocale())->isIdenticalTo($locale)502 ;503 }504 public function testSetScore()505 {506 $this507 ->if($test = new emptyTest())508 ->then509 ->object($test->setScore($score = new atoum\test\score()))->isIdenticalTo($test)510 ->object($test->getScore())->isIdenticalTo($score)511 ;512 }513 public function testSetBootstrapFile()514 {515 $this516 ->if($test = new emptyTest())517 ->then518 ->object($test->setBootstrapFile($path = uniqid()))->isIdenticalTo($test)519 ->string($test->getBootstrapFile())->isEqualTo($path)520 ;521 }522 public function testSetMaxChildrenNumber()523 {524 $this525 ->if($test = new emptyTest())526 ->then527 ->exception(function() use ($test) { $test->setMaxChildrenNumber(- rand(1, PHP_INT_MAX)); })528 ->isInstanceOf('mageekguy\atoum\exceptions\logic\invalidArgument')529 ->hasMessage('Maximum number of children must be greater or equal to 1')530 ->exception(function() use ($test) { $test->setMaxChildrenNumber(0); })531 ->isInstanceOf('mageekguy\atoum\exceptions\logic\invalidArgument')532 ->hasMessage('Maximum number of children must be greater or equal to 1')533 ->object($test->setMaxChildrenNumber($maxChildrenNumber = rand(1, PHP_INT_MAX)))->isIdenticalTo($test)534 ->integer($test->getMaxChildrenNumber())->isEqualTo($maxChildrenNumber)535 ->object($test->setMaxChildrenNumber((string) $maxChildrenNumber = rand(1, PHP_INT_MAX)))->isIdenticalTo($test)536 ->integer($test->getMaxChildrenNumber())->isEqualTo($maxChildrenNumber)537 ;538 }539 public function testGetClass()540 {541 $this542 ->if($test = new emptyTest())543 ->then544 ->string($test->getClass())->isEqualTo(__NAMESPACE__ . '\emptyTest')545 ;546 }547 public function testGetPath()548 {549 $this550 ->if($test = new emptyTest())551 ->then552 ->string($test->getPath())->isEqualTo(__FILE__)553 ;554 }555 public function testGetCoverage()556 {557 $this558 ->if($test = new emptyTest())559 ->then560 ->object($test->getCoverage())->isIdenticalTo($test->getScore()->getCoverage())561 ;562 }563 public function testIsIgnored()564 {565 $this566 ->if($test = new emptyTest())567 ->then568 ->boolean($test->isIgnored())->isTrue()569 ->object($test->ignore(false))->isIdenticalTo($test)570 ->boolean($test->isIgnored())->isTrue()571 ->object($test->ignore(true))->isIdenticalTo($test)572 ->boolean($test->isIgnored())->isTrue()573 ->if($test = new notEmptyTest())574 ->then575 ->boolean($test->isIgnored())->isTrue()576 ->boolean($test->methodIsIgnored('testMethod1'))->isTrue()577 ->boolean($test->methodIsIgnored('testMethod2'))->isTrue()578 ->object($test->ignore(false))->isIdenticalTo($test)579 ->boolean($test->isIgnored())->isFalse()580 ->boolean($test->methodIsIgnored('testMethod1'))->isFalse()581 ->boolean($test->methodIsIgnored('testMethod2'))->isFalse()582 ->object($test->ignore(true))->isIdenticalTo($test)583 ->boolean($test->isIgnored())->isTrue()584 ->boolean($test->methodIsIgnored('testMethod1'))->istrue()585 ->boolean($test->methodIsIgnored('testMethod2'))->isTrue()586 ;587 }588 public function testGetCurrentMethod()589 {590 $this591 ->if($test = new emptyTest())592 ->then593 ->variable($test->getCurrentMethod())->isNull()594 ;595 }596 public function testCount()597 {598 $this599 ->sizeOf(new emptyTest())->isEqualTo(0)600 ->if($test = new notEmptyTest())601 ->then602 ->sizeOf($test)->isEqualTo(0)603 ->if($test->ignore(false))604 ->then605 ->boolean($test->methodIsIgnored('testMethod1'))->isFalse()606 ->boolean($test->methodIsIgnored('testMethod2'))->isFalse()607 ->sizeOf($test)->isEqualTo(2)608 ->if($test->ignoreMethod('testMethod1', true))609 ->boolean($test->methodIsIgnored('testMethod1'))->isTrue()610 ->boolean($test->methodIsIgnored('testMethod2'))->isFalse()611 ->sizeOf($test)->isEqualTo(1)612 ->if($test->ignoreMethod('testMethod2', true))613 ->boolean($test->methodIsIgnored('testMethod1'))->isTrue()614 ->boolean($test->methodIsIgnored('testMethod2'))->isTrue()615 ->sizeOf($test)->isEqualTo(0)616 ;617 }618 public function testGetTestMethods()619 {620 $this621 ->if($test = new emptyTest())622 ->then623 ->boolean($test->ignore(false)->isIgnored())->isTrue()624 ->sizeOf($test)->isZero()625 ->array($test->getTestMethods())->isEmpty()626 ->if($test = new notEmptyTest())627 ->then628 ->boolean($test->isIgnored())->isTrue()629 ->boolean($test->methodIsIgnored('testMethod1'))->isTrue()630 ->boolean($test->methodIsIgnored('testMethod2'))->isTrue()631 ->sizeOf($test)->isEqualTo(0)632 ->array($test->getTestMethods())->isEmpty()633 ->boolean($test->ignore(false)->isIgnored())->isFalse()634 ->boolean($test->methodIsIgnored('testMethod1'))->isFalse()635 ->boolean($test->methodIsIgnored('testMethod2'))->isFalse()636 ->sizeOf($test)->isEqualTo(2)637 ->array($test->getTestMethods())->isEqualTo(array('testMethod1', 'testMethod2'))638 ->array($test->getTestMethods(array('method')))->isEqualTo(array('testMethod1', 'testMethod2'))639 ->array($test->getTestMethods(array('test')))->isEqualTo(array('testMethod1', 'testMethod2'))640 ->array($test->getTestMethods(array('two')))->isEqualTo(array('testMethod2'))641 ->array($test->getTestMethods(array(uniqid())))->isEmpty()642 ->array($test->getTestMethods(array('test', 'method')))->isEqualTo(array('testMethod1', 'testMethod2'))643 ->array($test->getTestMethods(array('test', 'method', uniqid())))->isEqualTo(array('testMethod1', 'testMethod2'))644 ->array($test->getTestMethods(array('test', 'method', 'two', uniqid())))->isEqualTo(array('testMethod1', 'testMethod2'))645 ;646 }647 public function testGetPhpPath()648 {649 $this650 ->if($test = new emptyTest())651 ->then652 ->variable($test->getPhpPath())->isNull()653 ->if($test->setPhpPath($phpPath = uniqid()))654 ->then655 ->string($test->getPhpPath())->isEqualTo($phpPath)656 ;657 }658 public function testSetPhpPath()659 {660 $this661 ->if($test = new emptyTest())662 ->then663 ->object($test->setPhpPath($phpPath = uniqid()))->isIdenticalTo($test)664 ->string($test->getPhpPath())->isIdenticalTo($phpPath)665 ->object($test->setPhpPath($phpPath = rand(1, PHP_INT_MAX)))->isIdenticalTo($test)666 ->string($test->getPhpPath())->isIdenticalTo((string) $phpPath)667 ;668 }669 public function testMethodIsIgnored()670 {671 $this672 ->if($test = new emptyTest())673 ->then674 ->exception(function() use ($test, & $method) { $test->methodIsIgnored($method = uniqid()); })675 ->isInstanceOf('mageekguy\atoum\exceptions\logic\invalidArgument')676 ->hasMessage('Test method ' . get_class($test) . '::' . $method . '() does not exist')677 ;678 }679 public function testSetTags()680 {681 $this682 ->if($test = new emptyTest())683 ->then684 ->object($test->setTags($tags = array(uniqid(), uniqid())))->isIdenticalTo($test)685 ->array($test->getTags())->isEqualTo($tags)686 ;687 }688 public function testSetMethodTags()689 {690 $this691 ->if($test = new notEmptyTest())692 ->then693 ->object($test->setMethodTags('testMethod1', $tags = array(uniqid(), uniqid())))->isIdenticalTo($test)694 ->array($test->getMethodTags('testMethod1'))->isEqualTo($tags)695 ->exception(function() use ($test, & $method) { $test->setMethodTags($method = uniqid(), array()); })696 ->isInstanceOf('mageekguy\atoum\exceptions\logic\invalidArgument')697 ->hasMessage('Test method ' . get_class($test) . '::' . $method . '() does not exist')698 ;699 }700 public function testGetMethodTags()701 {702 $this703 ->if($test = new notEmptyTest())704 ->then705 ->array($test->getMethodTags('testMethod1'))->isEqualTo(array('test', 'method', 'one'))706 ->exception(function() use ($test, & $method) { $test->getMethodTags($method = uniqid()); })707 ->isInstanceOf('mageekguy\atoum\exceptions\logic\invalidArgument')708 ->hasMessage('Test method ' . get_class($test) . '::' . $method . '() does not exist')709 ->if($test = new inheritedTagsTest())710 ->then711 ->array($test->getMethodTags())->isEqualTo(array('testMethod1' => array('first', 'second', 'third'), 'testMethod2' => array('first', 'second', 'third')))712 ->array($test->getMethodTags('testMethod1'))->isEqualTo(array('first', 'second', 'third'))713 ->array($test->getMethodTags('testMethod2'))->isEqualTo(array('first', 'second', 'third'))714 ->if($test = new dataProviderTest())715 ->then716 ->array($test->getMethodTags())->isEqualTo(array('testMethod1' => array(), 'testMethod2' => array(), 'testMethod3' => array()))717 ->array($test->getMethodTags('testMethod1'))->isEqualTo(array())718 ->array($test->getMethodTags('testMethod2'))->isEqualTo(array())719 ->array($test->getMethodTags('testMethod3'))->isEqualTo(array())720 ;721 }722 public function testAddMandatoryClassExtension()723 {724 $this725 ->if($test = new notEmptyTest())726 ->then727 ->object($test->addMandatoryClassExtension($extension = uniqid()))->isIdenticalTo($test)728 ->array($test->getMandatoryClassExtensions())->isEqualTo(array($extension))729 ->object($test->addMandatoryClassExtension($otherExtension = uniqid()))->isIdenticalTo($test)730 ->array($test->getMandatoryClassExtensions())->isEqualTo(array($extension, $otherExtension))731 ;732 }733 public function testGetMandatoryMethodExtensions()734 {735 $this736 ->if($test = new notEmptyTest())737 ->then738 ->array($test->getMandatoryMethodExtensions('testMethod1'))->isEmpty()739 ->array($test->getMandatoryMethodExtensions('testMethod2'))->isEqualTo(array('mbstring', 'socket'))740 ;741 }742 public function testAddMandatoryMethodExtension()743 {744 $this745 ->if($test = new notEmptyTest())746 ->then747 ->exception(function() use ($test, & $method) { $test->addMandatoryMethodExtension($method = uniqid(), uniqid()); })748 ->isInstanceOf('mageekguy\atoum\exceptions\logic\invalidArgument')749 ->hasMessage('Test method ' . get_class($test) . '::' . $method . '() does not exist')750 ->object($test->addMandatoryMethodExtension('testMethod1', $extension = uniqid()))->isIdenticalTo($test)751 ->array($test->getMandatoryMethodExtensions())->isEqualTo(array('testMethod1' => array($extension), 'testMethod2' => array('mbstring', 'socket')))752 ->array($test->getMandatoryMethodExtensions('testMethod1'))->isEqualTo(array($extension))753 ->array($test->getMandatoryMethodExtensions('testMethod2'))->isEqualTo(array('mbstring', 'socket'))754 ->object($test->addMandatoryMethodExtension('testMethod1', $otherExtension = uniqid()))->isIdenticalTo($test)755 ->array($test->getMandatoryMethodExtensions())->isEqualTo(array('testMethod1' => array($extension, $otherExtension), 'testMethod2' => array('mbstring', 'socket')))756 ->array($test->getMandatoryMethodExtensions('testMethod1'))->isEqualTo(array($extension, $otherExtension))757 ->array($test->getMandatoryMethodExtensions('testMethod2'))->isEqualTo(array('mbstring', 'socket'))758 ->object($test->addMandatoryMethodExtension('testMethod2', $anOtherExtension = uniqid()))->isIdenticalTo($test)759 ->array($test->getMandatoryMethodExtensions())->isEqualTo(array('testMethod1' => array($extension, $otherExtension), 'testMethod2' => array('mbstring', 'socket', $anOtherExtension)))760 ->array($test->getMandatoryMethodExtensions('testMethod1'))->isEqualTo(array($extension, $otherExtension))761 ->array($test->getMandatoryMethodExtensions('testMethod2'))->isEqualTo(array('mbstring', 'socket', $anOtherExtension))762 ->if($test->addMandatoryClassExtension($classExtension = uniqid()))763 ->then764 ->array($test->getMandatoryMethodExtensions())->isEqualTo(array('testMethod1' => array($classExtension, $extension, $otherExtension), 'testMethod2' => array($classExtension, 'mbstring', 'socket', $anOtherExtension)))765 ->array($test->getMandatoryMethodExtensions('testMethod1'))->isEqualTo(array($classExtension, $extension, $otherExtension))766 ->array($test->getMandatoryMethodExtensions('testMethod2'))->isEqualTo(array($classExtension, 'mbstring', 'socket', $anOtherExtension))767 ;768 }769 public function testAddClassPhpVersion()770 {771 $this772 ->if($test = new notEmptyTest())773 ->then774 ->object($test->addClassPhpVersion('5.3'))->isIdenticalTo($test)775 ->array($test->getClassPhpVersions())->isEqualTo(array('5.3' => '>='))776 ->object($test->addClassPhpVersion('5.4', '<='))->isIdenticalTo($test)777 ->array($test->getClassPhpVersions())->isEqualTo(array('5.3' => '>=', '5.4' => '<='))778 ;779 }780 public function testAddMethodPhpVersion()781 {782 $this783 ->if($test = new notEmptyTest())784 ->then785 ->exception(function() use ($test, & $method) { $test->addMethodPhpVersion($method, '6.0'); })786 ->isInstanceOf('mageekguy\atoum\exceptions\logic\invalidArgument')787 ->hasMessage('Test method ' . get_class($test) . '::' . $method . '() does not exist')788 ->object($test->addMethodPhpVersion('testMethod1', '5.3'))->isIdenticalTo($test)789 ->array($test->getMethodPhpVersions())->isEqualTo(array('testMethod1' => array('5.3' => '>='), 'testMethod2' => array()))790 ->array($test->getMethodPhpVersions('testMethod1'))->isEqualTo(array('5.3' => '>='))791 ->array($test->getMethodPhpVersions('testMethod2'))->isEmpty()792 ->object($test->addMethodPhpVersion('testMethod1', '5.4', '<='))->isIdenticalTo($test)793 ->array($test->getMethodPhpVersions())->isEqualTo(array('testMethod1' => array('5.3' => '>=', '5.4' => '<='), 'testMethod2' => array()))794 ->array($test->getMethodPhpVersions('testMethod1'))->isEqualTo(array('5.3' => '>=', '5.4' => '<='))795 ->array($test->getMethodPhpVersions('testMethod2'))->isEmpty()796 ->object($test->addMethodPhpVersion('testMethod2', '5.4', '>='))->isIdenticalTo($test)797 ->array($test->getMethodPhpVersions())->isEqualTo(array('testMethod1' => array('5.3' => '>=', '5.4' => '<='), 'testMethod2' => array('5.4' => '>=')))798 ->array($test->getMethodPhpVersions('testMethod1'))->isEqualTo(array('5.3' => '>=', '5.4' => '<='))799 ->array($test->getMethodPhpVersions('testMethod2'))->isEqualTo(array('5.4' => '>='))800 ->if($test->addClassPhpVersion('5.5'))801 ->then802 ->array($test->getMethodPhpVersions())->isEqualTo(array('testMethod1' => array('5.5' => '>=', '5.3' => '>=', '5.4' => '<='), 'testMethod2' => array('5.5' => '>=', '5.4' => '>=')))803 ->array($test->getMethodPhpVersions('testMethod1'))->isEqualTo(array('5.5' => '>=', '5.3' => '>=', '5.4' => '<='))804 ->array($test->getMethodPhpVersions('testMethod2'))->isEqualTo(array('5.5' => '>=', '5.4' => '>='))805 ;806 }807 public function testRun()808 {809 $this810 ->mockTestedClass('mock\tests\units')811 ->if($test = new \mock\tests\units\test())812 ->then813 ->object($test->run())->isIdenticalTo($test)814 ->mock($test)815 ->call('callObservers')816 ->withArguments(\mageekguy\atoum\test::runStart)->never()817 ->withArguments(\mageekguy\atoum\test::runStop)->never()818 ->withArguments(\mageekguy\atoum\test::beforeSetUp)->never()819 ->withArguments(\mageekguy\atoum\test::afterSetUp)->never()820 ->withArguments(\mageekguy\atoum\test::beforeTestMethod)->never()821 ->withArguments(\mageekguy\atoum\test::afterTestMethod)->never()...

Full Screen

Full Screen

testRun

Using AI Code Generation

copy

Full Screen

1$test = new inheritedTagsTest();2$test->testRun();3$test = new inheritedTagsTest();4$test->testRun();5$test = new inheritedTagsTest();6$test->testRun();7$test = new inheritedTagsTest();8$test->testRun();9$test = new inheritedTagsTest();10$test->testRun();11$test = new inheritedTagsTest();12$test->testRun();13$test = new inheritedTagsTest();14$test->testRun();15$test = new inheritedTagsTest();16$test->testRun();17$test = new inheritedTagsTest();18$test->testRun();19$test = new inheritedTagsTest();20$test->testRun();21$test = new inheritedTagsTest();22$test->testRun();23$test = new inheritedTagsTest();24$test->testRun();25$test = new inheritedTagsTest();26$test->testRun();27$test = new inheritedTagsTest();28$test->testRun();29$test = new inheritedTagsTest();30$test->testRun();

Full Screen

Full Screen

testRun

Using AI Code Generation

copy

Full Screen

1require_once 'inheritedTagsTest.php';2$test = new inheritedTagsTest();3$test->testRun();4require_once 'inheritedTagsTest.php';5$test = new inheritedTagsTest();6$test->testRun();7require_once 'inheritedTagsTest.php';8$test = new inheritedTagsTest();9$test->testRun();10require_once 'inheritedTagsTest.php';11$test = new inheritedTagsTest();12$test->testRun();13require_once 'inheritedTagsTest.php';14$test = new inheritedTagsTest();15$test->testRun();16require_once 'inheritedTagsTest.php';17$test = new inheritedTagsTest();18$test->testRun();19require_once 'inheritedTagsTest.php';20$test = new inheritedTagsTest();21$test->testRun();22require_once 'inheritedTagsTest.php';23$test = new inheritedTagsTest();24$test->testRun();25require_once 'inheritedTagsTest.php';26$test = new inheritedTagsTest();27$test->testRun();28require_once 'inheritedTagsTest.php';29$test = new inheritedTagsTest();30$test->testRun();31require_once 'inheritedTagsTest.php';32$test = new inheritedTagsTest();33$test->testRun();34require_once 'inheritedTagsTest.php';35$test = new inheritedTagsTest();36$test->testRun();

Full Screen

Full Screen

testRun

Using AI Code Generation

copy

Full Screen

1require_once 'inheritedTagsTest.php';2$test = new inheritedTagsTest();3$test->testRun();4require_once 'inheritedTagsTest.php';5$test = new inheritedTagsTest();6$test->testRun();

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run Atoum automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Trigger testRun code on LambdaTest Cloud Grid

Execute automation tests with testRun on a cloud-based Grid of 3000+ real browsers and operating systems for both web and mobile applications.

Test now for Free

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful