Skip to content

Commit 0c2553b

Browse files
committed
Merge pull request #11 from ferjul17/patch-1
Thank you!
2 parents 98c00dc + c93be3a commit 0c2553b

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/PHPUnitRandomizer/Randomizer.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
class Randomizer
66
{
77
/**
8-
* Order the TestSuite tests in a random order.
9-
*
10-
* @param TestSuite $suite The suite to randomize.
11-
* @param array $arguments Arguments to use.
12-
* @return \PHPUnit_Framework_Test
13-
*/
8+
* Order the TestSuite tests in a random order.
9+
*
10+
* @param \PHPUnit_Framework_Test $suite The suite to randomize.
11+
* @param integer $seed Seed used for PHP to randomize the suite.
12+
* @return \PHPUnit_Framework_Test
13+
*/
1414
public function randomizeTestSuite(\PHPUnit_Framework_Test $suite, $seed)
1515
{
1616
if ($this->testSuiteContainsOtherSuites($suite))
@@ -87,4 +87,4 @@ private function randomizeTestsCases(array $tests, $seed, $order)
8787
shuffle($tests);
8888
return $tests;
8989
}
90-
}
90+
}

0 commit comments

Comments
 (0)