Skip to content

Commit

Permalink
Merge branch 'stop-on-failure' of https://github.com/mpartel/paratest
Browse files Browse the repository at this point in the history
…into mpartel-stop-on-failure

Conflicts:
	README.md
	functional/PHPUnitTest.php
	it/ParaTest/Runners/PHPUnit/RunnerIntegrationTest.php
	src/ParaTest/Console/Testers/PHPUnit.php
	src/ParaTest/Runners/PHPUnit/Options.php
	test/ParaTest/Console/Commands/ParaTestCommandTest.php
	test/ParaTest/Console/Testers/PHPUnitTest.php
	test/ParaTest/Runners/PHPUnit/SuiteLoaderTest.php
	test/fixtures/output/usage.txt
  • Loading branch information
julianseeger committed Apr 12, 2014
1 parent f799c4d commit da81030
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion functional/PHPUnitTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ public function testFunctionalModeEachTestCalledOnce()
protected function assertResults($results)
{
$this->assertRegExp("/FAILURES!
Tests: 37, Assertions: 42, Failures: 6, Errors: 1./", $results);
Tests: 39, Assertions: 42, Failures: 6, Errors: 1./", $results);
}

protected function assertOkResults($results, $tests, $assertions)
Expand Down
2 changes: 1 addition & 1 deletion test/ParaTest/Runners/PHPUnit/SuiteLoaderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public function testLoadSuiteFromConfigWithMultipleDirs()
$loader = new SuiteLoader($options);
$loader->load();
$files = $this->getObjectValue($loader, 'files');
$this->assertEquals(16, sizeof($files));
$this->assertEquals(17, sizeof($files));
}


Expand Down

0 comments on commit da81030

Please sign in to comment.