diff --git a/README.md b/README.md index 68910186..d91613b6 100644 --- a/README.md +++ b/README.md @@ -398,18 +398,18 @@ Random Seed: 1676103726 ............. 13 / 13 (100%) -Detected 11 tests where the duration exceeded the maximum duration. - - 1. 00:01.604 (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Default\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider#9 - 2. 00:01.505 (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Default\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider#8 - 3. 00:01.403 (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Default\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider#7 - 4. 00:01.303 (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Default\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider#6 - 5. 00:01.205 (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Default\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider#5 - 6. 00:01.103 (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Default\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider#4 - 7. 00:01.005 (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Default\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider#3 - 8. 00:00.905 (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Default\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider#2 - 9. 00:00.805 (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Default\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider#1 -10. 00:00.705 (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Default\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider#0 +Detected 11 tests where the duration exceeded the maximum duration (00:00.500). + + 1. 00:01.604 Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Default\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider#9 + 2. 00:01.505 Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Default\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider#8 + 3. 00:01.403 Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Default\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider#7 + 4. 00:01.303 Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Default\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider#6 + 5. 00:01.205 Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Default\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider#5 + 6. 00:01.103 Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Default\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider#4 + 7. 00:01.005 Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Default\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider#3 + 8. 00:00.905 Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Default\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider#2 + 9. 00:00.805 Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Default\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider#1 +10. 00:00.705 Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Default\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider#0 There is 1 additional slow test that is not listed here. diff --git a/src/Extension.php b/src/Extension.php index c897a829..00426b3c 100644 --- a/src/Extension.php +++ b/src/Extension.php @@ -69,6 +69,7 @@ public function __construct(array $options = []) $this->collector = new Collector\DefaultCollector(); $this->reporter = new Reporter\DefaultReporter( new Formatter\DefaultDurationFormatter(), + $maximumDuration, $maximumCount ); } @@ -276,6 +277,7 @@ public function __construct(array $options = []) $this->collector = new Collector\DefaultCollector(); $this->reporter = new Reporter\DefaultReporter( new Formatter\DefaultDurationFormatter(), + $maximumDuration, $maximumCount ); } @@ -429,6 +431,7 @@ public function bootstrap( $collector = new Collector\DefaultCollector(); $reporter = new Reporter\DefaultReporter( new Formatter\DefaultDurationFormatter(), + $maximumDuration, $maximumCount ); diff --git a/src/Reporter/DefaultReporter.php b/src/Reporter/DefaultReporter.php index 2c3f694b..8b3346ec 100644 --- a/src/Reporter/DefaultReporter.php +++ b/src/Reporter/DefaultReporter.php @@ -16,6 +16,7 @@ use Ergebnis\PHPUnit\SlowTestDetector\Count; use Ergebnis\PHPUnit\SlowTestDetector\Formatter; use Ergebnis\PHPUnit\SlowTestDetector\MaximumCount; +use Ergebnis\PHPUnit\SlowTestDetector\MaximumDuration; use Ergebnis\PHPUnit\SlowTestDetector\SlowTestList; /** @@ -28,6 +29,11 @@ final class DefaultReporter implements Reporter */ private $durationFormatter; + /** + * @var MaximumDuration + */ + private $maximumDuration; + /** * @var MaximumCount */ @@ -35,9 +41,11 @@ final class DefaultReporter implements Reporter public function __construct( Formatter\DurationFormatter $durationFormatter, + MaximumDuration $maximumDuration, MaximumCount $maximumCount ) { $this->durationFormatter = $durationFormatter; + $this->maximumDuration = $maximumDuration; $this->maximumCount = $maximumCount; } @@ -55,14 +63,21 @@ public function report(SlowTestList $slowTestList): string */ private function lines(SlowTestList $slowTestList): \Generator { + $durationFormatter = $this->durationFormatter; + $formattedMaximumGlobalDuration = $durationFormatter->format($this->maximumDuration->toDuration()); + $slowTestCount = $slowTestList->count(); if ($slowTestCount->equals(Count::fromInt(1))) { - yield 'Detected 1 test where the duration exceeded the maximum duration.'; + yield \sprintf( + 'Detected 1 test where the duration exceeded the maximum duration (%s).', + $formattedMaximumGlobalDuration + ); } else { yield \sprintf( - 'Detected %d tests where the duration exceeded the maximum duration.', - $slowTestCount->toInt() + 'Detected %d tests where the duration exceeded the maximum duration (%s).', + $slowTestCount->toInt(), + $formattedMaximumGlobalDuration ); } @@ -80,23 +95,40 @@ private function lines(SlowTestList $slowTestList): \Generator $durationWidth = \strlen($this->durationFormatter->format($slowTestWithLongestDuration->duration())); $maximumDurationWidth = \strlen($this->durationFormatter->format($slowTestWithLongestMaximumDuration->maximumDuration()->toDuration())); - $template = \sprintf( - '%%%dd. %%%ds (%%%ds) %%s', - $numberWidth, - $durationWidth, - $maximumDurationWidth - ); - $number = 1; foreach ($slowTestListThatWillBeReported->toArray() as $slowTest) { - yield \sprintf( - $template, - (string) $number, - $this->durationFormatter->format($slowTest->duration()), - $this->durationFormatter->format($slowTest->maximumDuration()->toDuration()), - $slowTest->testDescription()->toString() - ); + $formattedMaximumDuration = $this->durationFormatter->format($slowTest->maximumDuration()->toDuration()); + + if ($formattedMaximumDuration === $formattedMaximumGlobalDuration) { + $template = \sprintf( + '%%%dd. %%%ds %%s', + $numberWidth, + $durationWidth + ); + + yield \sprintf( + $template, + (string) $number, + $this->durationFormatter->format($slowTest->duration()), + $slowTest->testDescription()->toString() + ); + } else { + $template = \sprintf( + '%%%dd. %%%ds (%%%ds) %%s', + $numberWidth, + $durationWidth, + $maximumDurationWidth + ); + + yield \sprintf( + $template, + (string) $number, + $this->durationFormatter->format($slowTest->duration()), + $formattedMaximumDuration, + $slowTest->testDescription()->toString() + ); + } ++$number; } diff --git a/test/EndToEnd/Version06/Configuration/Defaults/test.phpt b/test/EndToEnd/Version06/Configuration/Defaults/test.phpt index afeecced..4c30e680 100644 --- a/test/EndToEnd/Version06/Configuration/Defaults/test.phpt +++ b/test/EndToEnd/Version06/Configuration/Defaults/test.phpt @@ -20,18 +20,18 @@ Configuration: %s/EndToEnd/Version06/Configuration/Defaults/phpunit.xml ............ 12 / 12 (100%) -Detected 11 tests where the duration exceeded the maximum duration. - - 1. 00:01.6%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #10 - 2. 00:01.5%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #9 - 3. 00:01.4%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #8 - 4. 00:01.3%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #7 - 5. 00:01.2%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #6 - 6. 00:01.1%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #5 - 7. 00:01.0%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #4 - 8. 00:00.9%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #3 - 9. 00:00.8%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #2 -10. 00:00.7%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #1 +Detected 11 tests where the duration exceeded the maximum duration (00:00.500). + + 1. 00:01.6%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #10 + 2. 00:01.5%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #9 + 3. 00:01.4%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #8 + 4. 00:01.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #7 + 5. 00:01.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #6 + 6. 00:01.1%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #5 + 7. 00:01.0%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #4 + 8. 00:00.9%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #3 + 9. 00:00.8%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #2 +10. 00:00.7%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #1 There is 1 additional slow test that is not listed here. diff --git a/test/EndToEnd/Version06/Configuration/MaximumCount/test.phpt b/test/EndToEnd/Version06/Configuration/MaximumCount/test.phpt index 3ddaeafc..a274a2ea 100644 --- a/test/EndToEnd/Version06/Configuration/MaximumCount/test.phpt +++ b/test/EndToEnd/Version06/Configuration/MaximumCount/test.phpt @@ -20,11 +20,11 @@ Configuration: %s/EndToEnd/Version06/Configuration/MaximumCount/phpunit.xml ...... 6 / 6 (100%) -Detected 5 tests where the duration exceeded the maximum duration. +Detected 5 tests where the duration exceeded the maximum duration (00:00.500). -1. 00:01.0%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\Configuration\MaximumCount\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #4 -2. 00:00.9%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\Configuration\MaximumCount\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #3 -3. 00:00.8%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\Configuration\MaximumCount\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #2 +1. 00:01.0%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\Configuration\MaximumCount\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #4 +2. 00:00.9%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\Configuration\MaximumCount\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #3 +3. 00:00.8%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\Configuration\MaximumCount\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #2 There are 2 additional slow tests that are not listed here. diff --git a/test/EndToEnd/Version06/Configuration/MaximumDuration/test.phpt b/test/EndToEnd/Version06/Configuration/MaximumDuration/test.phpt index 8769b77c..fd5f943f 100644 --- a/test/EndToEnd/Version06/Configuration/MaximumDuration/test.phpt +++ b/test/EndToEnd/Version06/Configuration/MaximumDuration/test.phpt @@ -20,18 +20,18 @@ Configuration: %s/EndToEnd/Version06/Configuration/MaximumDuration/phpunit.xml ............ 12 / 12 (100%) -Detected 11 tests where the duration exceeded the maximum duration. - - 1. 00:01.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #10 - 2. 00:01.1%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #9 - 3. 00:01.0%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #8 - 4. 00:00.9%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #7 - 5. 00:00.8%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #6 - 6. 00:00.7%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #5 - 7. 00:00.6%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #4 - 8. 00:00.5%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #3 - 9. 00:00.4%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #2 -10. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 +Detected 11 tests where the duration exceeded the maximum duration (00:00.100). + + 1. 00:01.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #10 + 2. 00:01.1%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #9 + 3. 00:01.0%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #8 + 4. 00:00.9%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #7 + 5. 00:00.8%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #6 + 6. 00:00.7%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #5 + 7. 00:00.6%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #4 + 8. 00:00.5%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #3 + 9. 00:00.4%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #2 +10. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 There is 1 additional slow test that is not listed here. diff --git a/test/EndToEnd/Version06/TestCase/Bare/test.phpt b/test/EndToEnd/Version06/TestCase/Bare/test.phpt index 450943a3..0f551fda 100644 --- a/test/EndToEnd/Version06/TestCase/Bare/test.phpt +++ b/test/EndToEnd/Version06/TestCase/Bare/test.phpt @@ -20,10 +20,10 @@ Configuration: %s/EndToEnd/Version06/TestCase/Bare/phpunit.xml ... 3 / 3 (100%) -Detected 2 tests where the duration exceeded the maximum duration. +Detected 2 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\Bare\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 -2. 00:00.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\Bare\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 +1. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\Bare\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 +2. 00:00.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\Bare\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 Time: %s, Memory: %s diff --git a/test/EndToEnd/Version06/TestCase/Combination/test.phpt b/test/EndToEnd/Version06/TestCase/Combination/test.phpt index dcb9d546..8da8d682 100644 --- a/test/EndToEnd/Version06/TestCase/Combination/test.phpt +++ b/test/EndToEnd/Version06/TestCase/Combination/test.phpt @@ -20,11 +20,11 @@ Configuration: %s/EndToEnd/Version06/TestCase/Combination/phpunit.xml ... 3 / 3 (100%) -Detected 3 tests where the duration exceeded the maximum duration. +Detected 3 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.9%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\Combination\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 -2. 00:00.8%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\Combination\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 -3. 00:00.6%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\Combination\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration +1. 00:00.9%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\Combination\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 +2. 00:00.8%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\Combination\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 +3. 00:00.6%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\Combination\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration Time: %s, Memory: %s diff --git a/test/EndToEnd/Version06/TestCase/WithAfterAnnotation/test.phpt b/test/EndToEnd/Version06/TestCase/WithAfterAnnotation/test.phpt index 686dd8f7..24099d69 100644 --- a/test/EndToEnd/Version06/TestCase/WithAfterAnnotation/test.phpt +++ b/test/EndToEnd/Version06/TestCase/WithAfterAnnotation/test.phpt @@ -20,11 +20,11 @@ Configuration: %s/EndToEnd/Version06/TestCase/WithAfterAnnotation/phpunit.xml ... 3 / 3 (100%) -Detected 3 tests where the duration exceeded the maximum duration. +Detected 3 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.4%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\WithAfterAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 -2. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\WithAfterAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 -3. 00:00.1%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\WithAfterAnnotation\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration +1. 00:00.4%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\WithAfterAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 +2. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\WithAfterAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 +3. 00:00.1%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\WithAfterAnnotation\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration Time: %s, Memory: %s diff --git a/test/EndToEnd/Version06/TestCase/WithAfterClassAnnotation/test.phpt b/test/EndToEnd/Version06/TestCase/WithAfterClassAnnotation/test.phpt index cd444ac9..274ab839 100644 --- a/test/EndToEnd/Version06/TestCase/WithAfterClassAnnotation/test.phpt +++ b/test/EndToEnd/Version06/TestCase/WithAfterClassAnnotation/test.phpt @@ -20,10 +20,10 @@ Configuration: %s/EndToEnd/Version06/TestCase/WithAfterClassAnnotation/phpunit.x ... 3 / 3 (100%) -Detected 2 tests where the duration exceeded the maximum duration. +Detected 2 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\WithAfterClassAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 -2. 00:00.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\WithAfterClassAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 +1. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\WithAfterClassAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 +2. 00:00.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\WithAfterClassAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 Time: %s, Memory: %s diff --git a/test/EndToEnd/Version06/TestCase/WithAssertPostConditions/test.phpt b/test/EndToEnd/Version06/TestCase/WithAssertPostConditions/test.phpt index 67cfe760..86ed71ea 100644 --- a/test/EndToEnd/Version06/TestCase/WithAssertPostConditions/test.phpt +++ b/test/EndToEnd/Version06/TestCase/WithAssertPostConditions/test.phpt @@ -20,11 +20,11 @@ Configuration: %s/EndToEnd/Version06/TestCase/WithAssertPostConditions/phpunit.x ... 3 / 3 (100%) -Detected 3 tests where the duration exceeded the maximum duration. +Detected 3 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.4%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\WithAssertPostConditions\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 -2. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\WithAssertPostConditions\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 -3. 00:00.1%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\WithAssertPostConditions\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration +1. 00:00.4%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\WithAssertPostConditions\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 +2. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\WithAssertPostConditions\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 +3. 00:00.1%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\WithAssertPostConditions\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration Time: %s, Memory: %s diff --git a/test/EndToEnd/Version06/TestCase/WithAssertPreConditions/test.phpt b/test/EndToEnd/Version06/TestCase/WithAssertPreConditions/test.phpt index 97972fcc..eb2aa58a 100644 --- a/test/EndToEnd/Version06/TestCase/WithAssertPreConditions/test.phpt +++ b/test/EndToEnd/Version06/TestCase/WithAssertPreConditions/test.phpt @@ -20,11 +20,11 @@ Configuration: %s/EndToEnd/Version06/TestCase/WithAssertPreConditions/phpunit.xm ... 3 / 3 (100%) -Detected 3 tests where the duration exceeded the maximum duration. +Detected 3 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.4%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\WithAssertPreConditions\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 -2. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\WithAssertPreConditions\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 -3. 00:00.1%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\WithAssertPreConditions\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration +1. 00:00.4%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\WithAssertPreConditions\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 +2. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\WithAssertPreConditions\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 +3. 00:00.1%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\WithAssertPreConditions\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration Time: %s, Memory: %s diff --git a/test/EndToEnd/Version06/TestCase/WithBeforeAnnotation/test.phpt b/test/EndToEnd/Version06/TestCase/WithBeforeAnnotation/test.phpt index e2a88f2f..8801bead 100644 --- a/test/EndToEnd/Version06/TestCase/WithBeforeAnnotation/test.phpt +++ b/test/EndToEnd/Version06/TestCase/WithBeforeAnnotation/test.phpt @@ -20,11 +20,11 @@ Configuration: %s/EndToEnd/Version06/TestCase/WithBeforeAnnotation/phpunit.xml ... 3 / 3 (100%) -Detected 3 tests where the duration exceeded the maximum duration. +Detected 3 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.4%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\WithBeforeAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 -2. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\WithBeforeAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 -3. 00:00.1%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\WithBeforeAnnotation\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration +1. 00:00.4%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\WithBeforeAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 +2. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\WithBeforeAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 +3. 00:00.1%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\WithBeforeAnnotation\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration Time: %s, Memory: %s diff --git a/test/EndToEnd/Version06/TestCase/WithBeforeClassAnnotation/test.phpt b/test/EndToEnd/Version06/TestCase/WithBeforeClassAnnotation/test.phpt index 34141ce3..25b38f68 100644 --- a/test/EndToEnd/Version06/TestCase/WithBeforeClassAnnotation/test.phpt +++ b/test/EndToEnd/Version06/TestCase/WithBeforeClassAnnotation/test.phpt @@ -20,10 +20,10 @@ Configuration: %s/EndToEnd/Version06/TestCase/WithBeforeClassAnnotation/phpunit. ... 3 / 3 (100%) -Detected 2 tests where the duration exceeded the maximum duration. +Detected 2 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\WithBeforeClassAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 -2. 00:00.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\WithBeforeClassAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 +1. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\WithBeforeClassAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 +2. 00:00.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\WithBeforeClassAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 Time: %s, Memory: %s diff --git a/test/EndToEnd/Version06/TestCase/WithDataProvider/test.phpt b/test/EndToEnd/Version06/TestCase/WithDataProvider/test.phpt index 1c6f55c9..8c8ddb2f 100644 --- a/test/EndToEnd/Version06/TestCase/WithDataProvider/test.phpt +++ b/test/EndToEnd/Version06/TestCase/WithDataProvider/test.phpt @@ -20,10 +20,10 @@ Configuration: %s/EndToEnd/Version06/TestCase/WithDataProvider/phpunit.xml ... 3 / 3 (100%) -Detected 2 tests where the duration exceeded the maximum duration. +Detected 2 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\WithDataProvider\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 -2. 00:00.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\WithDataProvider\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 +1. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\WithDataProvider\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 +2. 00:00.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\WithDataProvider\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 Time: %s, Memory: %s diff --git a/test/EndToEnd/Version06/TestCase/WithSetUp/test.phpt b/test/EndToEnd/Version06/TestCase/WithSetUp/test.phpt index 77c42d8b..653bc9d9 100644 --- a/test/EndToEnd/Version06/TestCase/WithSetUp/test.phpt +++ b/test/EndToEnd/Version06/TestCase/WithSetUp/test.phpt @@ -20,11 +20,11 @@ Configuration: %s/EndToEnd/Version06/TestCase/WithSetUp/phpunit.xml ... 3 / 3 (100%) -Detected 3 tests where the duration exceeded the maximum duration. +Detected 3 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.4%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\WithSetUp\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 -2. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\WithSetUp\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 -3. 00:00.1%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\WithSetUp\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration +1. 00:00.4%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\WithSetUp\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 +2. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\WithSetUp\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 +3. 00:00.1%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\WithSetUp\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration Time: %s, Memory: %s diff --git a/test/EndToEnd/Version06/TestCase/WithSetUpBeforeClass/test.phpt b/test/EndToEnd/Version06/TestCase/WithSetUpBeforeClass/test.phpt index aa701661..02bba849 100644 --- a/test/EndToEnd/Version06/TestCase/WithSetUpBeforeClass/test.phpt +++ b/test/EndToEnd/Version06/TestCase/WithSetUpBeforeClass/test.phpt @@ -20,10 +20,10 @@ Configuration: %s/EndToEnd/Version06/TestCase/WithSetUpBeforeClass/phpunit.xml ... 3 / 3 (100%) -Detected 2 tests where the duration exceeded the maximum duration. +Detected 2 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\WithSetUpBeforeClass\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 -2. 00:00.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\WithSetUpBeforeClass\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 +1. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\WithSetUpBeforeClass\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 +2. 00:00.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\WithSetUpBeforeClass\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 Time: %s, Memory: %s diff --git a/test/EndToEnd/Version06/TestCase/WithTearDown/test.phpt b/test/EndToEnd/Version06/TestCase/WithTearDown/test.phpt index d37712f4..09ff2ae4 100644 --- a/test/EndToEnd/Version06/TestCase/WithTearDown/test.phpt +++ b/test/EndToEnd/Version06/TestCase/WithTearDown/test.phpt @@ -20,11 +20,11 @@ Configuration: %s/EndToEnd/Version06/TestCase/WithTearDown/phpunit.xml ... 3 / 3 (100%) -Detected 3 tests where the duration exceeded the maximum duration. +Detected 3 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.4%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\WithTearDown\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 -2. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\WithTearDown\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 -3. 00:00.1%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\WithTearDown\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration +1. 00:00.4%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\WithTearDown\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 +2. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\WithTearDown\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 +3. 00:00.1%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\WithTearDown\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration Time: %s, Memory: %s diff --git a/test/EndToEnd/Version06/TestCase/WithTearDownAfterClass/test.phpt b/test/EndToEnd/Version06/TestCase/WithTearDownAfterClass/test.phpt index dc2dc954..f38e1f26 100644 --- a/test/EndToEnd/Version06/TestCase/WithTearDownAfterClass/test.phpt +++ b/test/EndToEnd/Version06/TestCase/WithTearDownAfterClass/test.phpt @@ -20,10 +20,10 @@ Configuration: %s/EndToEnd/Version06/TestCase/WithTearDownAfterClass/phpunit.xml ... 3 / 3 (100%) -Detected 2 tests where the duration exceeded the maximum duration. +Detected 2 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\WithTearDownAfterClass\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 -2. 00:00.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\WithTearDownAfterClass\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 +1. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\WithTearDownAfterClass\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 +2. 00:00.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestCase\WithTearDownAfterClass\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 Time: %s, Memory: %s diff --git a/test/EndToEnd/Version06/TestMethod/WithMaximumDurationAndSlowThresholdAnnotations/test.phpt b/test/EndToEnd/Version06/TestMethod/WithMaximumDurationAndSlowThresholdAnnotations/test.phpt index 860d617c..b96b592e 100644 --- a/test/EndToEnd/Version06/TestMethod/WithMaximumDurationAndSlowThresholdAnnotations/test.phpt +++ b/test/EndToEnd/Version06/TestMethod/WithMaximumDurationAndSlowThresholdAnnotations/test.phpt @@ -20,7 +20,7 @@ Configuration: %s/EndToEnd/Version06/TestMethod/WithMaximumDurationAndSlowThresh .. 2 / 2 (100%) -Detected 1 test where the duration exceeded the maximum duration. +Detected 1 test where the duration exceeded the maximum duration (00:00.100). 1. 00:00.3%s (00:00.200) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestMethod\WithMaximumDurationAndSlowThresholdAnnotations\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromAnnotationWhenTestMethodHasMaximumDurationAndSlowThresholdAnnotations diff --git a/test/EndToEnd/Version06/TestMethod/WithMaximumDurationAnnotation/test.phpt b/test/EndToEnd/Version06/TestMethod/WithMaximumDurationAnnotation/test.phpt index 8969bab4..ccdd3716 100644 --- a/test/EndToEnd/Version06/TestMethod/WithMaximumDurationAnnotation/test.phpt +++ b/test/EndToEnd/Version06/TestMethod/WithMaximumDurationAnnotation/test.phpt @@ -20,10 +20,10 @@ Configuration: %s/EndToEnd/Version06/TestMethod/WithMaximumDurationAnnotation/ph .... 4 / 4 (100%) -Detected 2 tests where the duration exceeded the maximum duration. +Detected 2 tests where the duration exceeded the maximum duration (00:00.100). 1. 00:00.3%s (00:00.200) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestMethod\WithMaximumDurationAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromAnnotationWhenTestMethodHasValidMaximumDurationAnnotation -2. 00:00.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestMethod\WithMaximumDurationAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWhenTestMethodHasInvalidMaximumDurationAnnotation +2. 00:00.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestMethod\WithMaximumDurationAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWhenTestMethodHasInvalidMaximumDurationAnnotation Time: %s, Memory: %s diff --git a/test/EndToEnd/Version06/TestMethod/WithRunInSeparateProcessAnnotation/test.phpt b/test/EndToEnd/Version06/TestMethod/WithRunInSeparateProcessAnnotation/test.phpt index 9afd16ff..bc56aaf2 100644 --- a/test/EndToEnd/Version06/TestMethod/WithRunInSeparateProcessAnnotation/test.phpt +++ b/test/EndToEnd/Version06/TestMethod/WithRunInSeparateProcessAnnotation/test.phpt @@ -25,12 +25,12 @@ Configuration: %s/EndToEnd/Version06/TestMethod/WithRunInSeparateProcessAnnotati .... 4 / 4 (100%) -Detected 4 tests where the duration exceeded the maximum duration. +Detected 4 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:01.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestMethod\WithRunInSeparateProcessAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWhenMethodHasRunInSeparateProcessAnnotation -2. 00:01.0%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestMethod\WithRunInSeparateProcessAnnotation\SleeperTest::testSleeperSleepsShorterThanMaximumDurationFromXmlConfigurationWhenMethodHasRunInSeparateProcessAnnotation -3. 00:00.8%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestMethod\WithRunInSeparateProcessAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfiguration -4. 00:00.6%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestMethod\WithRunInSeparateProcessAnnotation\SleeperTest::testSleeperSleepsShorterThanMaximumDurationFromXmlConfiguration +1. 00:01.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestMethod\WithRunInSeparateProcessAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWhenMethodHasRunInSeparateProcessAnnotation +2. 00:01.0%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestMethod\WithRunInSeparateProcessAnnotation\SleeperTest::testSleeperSleepsShorterThanMaximumDurationFromXmlConfigurationWhenMethodHasRunInSeparateProcessAnnotation +3. 00:00.8%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestMethod\WithRunInSeparateProcessAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfiguration +4. 00:00.6%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestMethod\WithRunInSeparateProcessAnnotation\SleeperTest::testSleeperSleepsShorterThanMaximumDurationFromXmlConfiguration Time: %s, Memory: %s diff --git a/test/EndToEnd/Version06/TestMethod/WithSlowThresholdAndMaximumDurationAnnotations/test.phpt b/test/EndToEnd/Version06/TestMethod/WithSlowThresholdAndMaximumDurationAnnotations/test.phpt index c7a309af..75693e7e 100644 --- a/test/EndToEnd/Version06/TestMethod/WithSlowThresholdAndMaximumDurationAnnotations/test.phpt +++ b/test/EndToEnd/Version06/TestMethod/WithSlowThresholdAndMaximumDurationAnnotations/test.phpt @@ -20,7 +20,7 @@ Configuration: %s/EndToEnd/Version06/TestMethod/WithSlowThresholdAndMaximumDurat .. 2 / 2 (100%) -Detected 1 test where the duration exceeded the maximum duration. +Detected 1 test where the duration exceeded the maximum duration (00:00.100). 1. 00:00.3%s (00:00.200) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestMethod\WithSlowThresholdAndMaximumDurationAnnotations\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromAnnotationWhenTestMethodHasMaximumDurationAndSlowThresholdAnnotations diff --git a/test/EndToEnd/Version06/TestMethod/WithSlowThresholdAnnotation/test.phpt b/test/EndToEnd/Version06/TestMethod/WithSlowThresholdAnnotation/test.phpt index 9e55a5ff..9f8780fa 100644 --- a/test/EndToEnd/Version06/TestMethod/WithSlowThresholdAnnotation/test.phpt +++ b/test/EndToEnd/Version06/TestMethod/WithSlowThresholdAnnotation/test.phpt @@ -20,10 +20,10 @@ Configuration: %s/EndToEnd/Version06/TestMethod/WithSlowThresholdAnnotation/phpu .... 4 / 4 (100%) -Detected 2 tests where the duration exceeded the maximum duration. +Detected 2 tests where the duration exceeded the maximum duration (00:00.100). 1. 00:00.3%s (00:00.200) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestMethod\WithSlowThresholdAnnotation\SleeperTest::testSleeperSleepsLongerThanSlowThresholdFromAnnotationWhenTestMethodHasValidSlowThresholdAnnotation -2. 00:00.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestMethod\WithSlowThresholdAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWhenTestMethodHasInvalidSlowThresholdAnnotation +2. 00:00.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version06\TestMethod\WithSlowThresholdAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWhenTestMethodHasInvalidSlowThresholdAnnotation Time: %s, Memory: %s diff --git a/test/EndToEnd/Version07/Configuration/Defaults/test.phpt b/test/EndToEnd/Version07/Configuration/Defaults/test.phpt index 8bfb1e65..73a39aae 100644 --- a/test/EndToEnd/Version07/Configuration/Defaults/test.phpt +++ b/test/EndToEnd/Version07/Configuration/Defaults/test.phpt @@ -20,18 +20,18 @@ Configuration: %s/EndToEnd/Version07/Configuration/Defaults/phpunit.xml ............ 12 / 12 (100%) -Detected 11 tests where the duration exceeded the maximum duration. - - 1. 00:01.6%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #10 (1600) - 2. 00:01.5%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #9 (1500) - 3. 00:01.4%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #8 (1400) - 4. 00:01.3%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #7 (1300) - 5. 00:01.2%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #6 (1200) - 6. 00:01.1%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #5 (1100) - 7. 00:01.0%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #4 (1000) - 8. 00:00.9%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #3 (900) - 9. 00:00.8%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #2 (800) -10. 00:00.7%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #1 (700) +Detected 11 tests where the duration exceeded the maximum duration (00:00.500). + + 1. 00:01.6%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #10 (1600) + 2. 00:01.5%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #9 (1500) + 3. 00:01.4%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #8 (1400) + 4. 00:01.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #7 (1300) + 5. 00:01.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #6 (1200) + 6. 00:01.1%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #5 (1100) + 7. 00:01.0%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #4 (1000) + 8. 00:00.9%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #3 (900) + 9. 00:00.8%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #2 (800) +10. 00:00.7%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #1 (700) There is 1 additional slow test that is not listed here. diff --git a/test/EndToEnd/Version07/Configuration/MaximumCount/test.phpt b/test/EndToEnd/Version07/Configuration/MaximumCount/test.phpt index 6928f26a..f5a34926 100644 --- a/test/EndToEnd/Version07/Configuration/MaximumCount/test.phpt +++ b/test/EndToEnd/Version07/Configuration/MaximumCount/test.phpt @@ -20,11 +20,11 @@ Configuration: %s/EndToEnd/Version07/Configuration/MaximumCount/phpunit.xml ...... 6 / 6 (100%) -Detected 5 tests where the duration exceeded the maximum duration. +Detected 5 tests where the duration exceeded the maximum duration (00:00.500). -1. 00:01.0%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\Configuration\MaximumCount\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #4 (1000) -2. 00:00.9%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\Configuration\MaximumCount\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #3 (900) -3. 00:00.8%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\Configuration\MaximumCount\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #2 (800) +1. 00:01.0%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\Configuration\MaximumCount\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #4 (1000) +2. 00:00.9%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\Configuration\MaximumCount\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #3 (900) +3. 00:00.8%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\Configuration\MaximumCount\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #2 (800) There are 2 additional slow tests that are not listed here. diff --git a/test/EndToEnd/Version07/Configuration/MaximumDuration/test.phpt b/test/EndToEnd/Version07/Configuration/MaximumDuration/test.phpt index 2586ca9e..a6e7a8c2 100644 --- a/test/EndToEnd/Version07/Configuration/MaximumDuration/test.phpt +++ b/test/EndToEnd/Version07/Configuration/MaximumDuration/test.phpt @@ -20,18 +20,18 @@ Configuration: %s/EndToEnd/Version07/Configuration/MaximumDuration/phpunit.xml ............ 12 / 12 (100%) -Detected 11 tests where the duration exceeded the maximum duration. - - 1. 00:01.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #10 (1200) - 2. 00:01.1%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #9 (1100) - 3. 00:01.0%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #8 (1000) - 4. 00:00.9%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #7 (900) - 5. 00:00.8%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #6 (800) - 6. 00:00.7%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #5 (700) - 7. 00:00.6%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #4 (600) - 8. 00:00.5%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #3 (500) - 9. 00:00.4%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #2 (400) -10. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +Detected 11 tests where the duration exceeded the maximum duration (00:00.100). + + 1. 00:01.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #10 (1200) + 2. 00:01.1%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #9 (1100) + 3. 00:01.0%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #8 (1000) + 4. 00:00.9%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #7 (900) + 5. 00:00.8%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #6 (800) + 6. 00:00.7%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #5 (700) + 7. 00:00.6%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #4 (600) + 8. 00:00.5%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #3 (500) + 9. 00:00.4%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #2 (400) +10. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) There is 1 additional slow test that is not listed here. diff --git a/test/EndToEnd/Version07/TestCase/Bare/test.phpt b/test/EndToEnd/Version07/TestCase/Bare/test.phpt index 9a1d33e9..b08d56a3 100644 --- a/test/EndToEnd/Version07/TestCase/Bare/test.phpt +++ b/test/EndToEnd/Version07/TestCase/Bare/test.phpt @@ -20,10 +20,10 @@ Configuration: %s/EndToEnd/Version07/TestCase/Bare/phpunit.xml ... 3 / 3 (100%) -Detected 2 tests where the duration exceeded the maximum duration. +Detected 2 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\Bare\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\Bare\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +1. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\Bare\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\Bare\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) Time: %s, Memory: %s diff --git a/test/EndToEnd/Version07/TestCase/Combination/test.phpt b/test/EndToEnd/Version07/TestCase/Combination/test.phpt index f3d9a183..9b9356fd 100644 --- a/test/EndToEnd/Version07/TestCase/Combination/test.phpt +++ b/test/EndToEnd/Version07/TestCase/Combination/test.phpt @@ -20,11 +20,11 @@ Configuration: %s/EndToEnd/Version07/TestCase/Combination/phpunit.xml ... 3 / 3 (100%) -Detected 3 tests where the duration exceeded the maximum duration. +Detected 3 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.9%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\Combination\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.8%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\Combination\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) -3. 00:00.6%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\Combination\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration +1. 00:00.9%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\Combination\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.8%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\Combination\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +3. 00:00.6%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\Combination\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration Time: %s, Memory: %s diff --git a/test/EndToEnd/Version07/TestCase/WithAfterAnnotation/test.phpt b/test/EndToEnd/Version07/TestCase/WithAfterAnnotation/test.phpt index 384516fd..003e622a 100644 --- a/test/EndToEnd/Version07/TestCase/WithAfterAnnotation/test.phpt +++ b/test/EndToEnd/Version07/TestCase/WithAfterAnnotation/test.phpt @@ -20,11 +20,11 @@ Configuration: %s/EndToEnd/Version07/TestCase/WithAfterAnnotation/phpunit.xml ... 3 / 3 (100%) -Detected 3 tests where the duration exceeded the maximum duration. +Detected 3 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.4%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\WithAfterAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\WithAfterAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) -3. 00:00.1%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\WithAfterAnnotation\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration +1. 00:00.4%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\WithAfterAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\WithAfterAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +3. 00:00.1%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\WithAfterAnnotation\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration Time: %s, Memory: %s diff --git a/test/EndToEnd/Version07/TestCase/WithAfterClassAnnotation/test.phpt b/test/EndToEnd/Version07/TestCase/WithAfterClassAnnotation/test.phpt index 1cdedbc2..a088a7f6 100644 --- a/test/EndToEnd/Version07/TestCase/WithAfterClassAnnotation/test.phpt +++ b/test/EndToEnd/Version07/TestCase/WithAfterClassAnnotation/test.phpt @@ -20,10 +20,10 @@ Configuration: %s/EndToEnd/Version07/TestCase/WithAfterClassAnnotation/phpunit.x ... 3 / 3 (100%) -Detected 2 tests where the duration exceeded the maximum duration. +Detected 2 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\WithAfterClassAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\WithAfterClassAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +1. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\WithAfterClassAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\WithAfterClassAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) Time: %s, Memory: %s diff --git a/test/EndToEnd/Version07/TestCase/WithAssertPostConditions/test.phpt b/test/EndToEnd/Version07/TestCase/WithAssertPostConditions/test.phpt index cf91381e..aa12a51a 100644 --- a/test/EndToEnd/Version07/TestCase/WithAssertPostConditions/test.phpt +++ b/test/EndToEnd/Version07/TestCase/WithAssertPostConditions/test.phpt @@ -20,11 +20,11 @@ Configuration: %s/EndToEnd/Version07/TestCase/WithAssertPostConditions/phpunit.x ... 3 / 3 (100%) -Detected 3 tests where the duration exceeded the maximum duration. +Detected 3 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.4%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\WithAssertPostConditions\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\WithAssertPostConditions\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) -3. 00:00.1%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\WithAssertPostConditions\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration +1. 00:00.4%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\WithAssertPostConditions\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\WithAssertPostConditions\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +3. 00:00.1%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\WithAssertPostConditions\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration Time: %s, Memory: %s diff --git a/test/EndToEnd/Version07/TestCase/WithAssertPreConditions/test.phpt b/test/EndToEnd/Version07/TestCase/WithAssertPreConditions/test.phpt index 5fce7211..e2774423 100644 --- a/test/EndToEnd/Version07/TestCase/WithAssertPreConditions/test.phpt +++ b/test/EndToEnd/Version07/TestCase/WithAssertPreConditions/test.phpt @@ -20,11 +20,11 @@ Configuration: %s/EndToEnd/Version07/TestCase/WithAssertPreConditions/phpunit.xm ... 3 / 3 (100%) -Detected 3 tests where the duration exceeded the maximum duration. +Detected 3 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.4%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\WithAssertPreConditions\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\WithAssertPreConditions\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) -3. 00:00.1%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\WithAssertPreConditions\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration +1. 00:00.4%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\WithAssertPreConditions\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\WithAssertPreConditions\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +3. 00:00.1%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\WithAssertPreConditions\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration Time: %s, Memory: %s diff --git a/test/EndToEnd/Version07/TestCase/WithBeforeAnnotation/test.phpt b/test/EndToEnd/Version07/TestCase/WithBeforeAnnotation/test.phpt index 74a50820..91578c40 100644 --- a/test/EndToEnd/Version07/TestCase/WithBeforeAnnotation/test.phpt +++ b/test/EndToEnd/Version07/TestCase/WithBeforeAnnotation/test.phpt @@ -20,11 +20,11 @@ Configuration: %s/EndToEnd/Version07/TestCase/WithBeforeAnnotation/phpunit.xml ... 3 / 3 (100%) -Detected 3 tests where the duration exceeded the maximum duration. +Detected 3 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.4%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\WithBeforeAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\WithBeforeAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) -3. 00:00.1%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\WithBeforeAnnotation\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration +1. 00:00.4%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\WithBeforeAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\WithBeforeAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +3. 00:00.1%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\WithBeforeAnnotation\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration Time: %s, Memory: %s diff --git a/test/EndToEnd/Version07/TestCase/WithBeforeClassAnnotation/test.phpt b/test/EndToEnd/Version07/TestCase/WithBeforeClassAnnotation/test.phpt index 034fb355..3c30d2ff 100644 --- a/test/EndToEnd/Version07/TestCase/WithBeforeClassAnnotation/test.phpt +++ b/test/EndToEnd/Version07/TestCase/WithBeforeClassAnnotation/test.phpt @@ -20,10 +20,10 @@ Configuration: %s/EndToEnd/Version07/TestCase/WithBeforeClassAnnotation/phpunit. ... 3 / 3 (100%) -Detected 2 tests where the duration exceeded the maximum duration. +Detected 2 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\WithBeforeClassAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\WithBeforeClassAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +1. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\WithBeforeClassAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\WithBeforeClassAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) Time: %s, Memory: %s diff --git a/test/EndToEnd/Version07/TestCase/WithDataProvider/test.phpt b/test/EndToEnd/Version07/TestCase/WithDataProvider/test.phpt index fa22f8d4..38ce4c60 100644 --- a/test/EndToEnd/Version07/TestCase/WithDataProvider/test.phpt +++ b/test/EndToEnd/Version07/TestCase/WithDataProvider/test.phpt @@ -20,10 +20,10 @@ Configuration: %s/EndToEnd/Version07/TestCase/WithDataProvider/phpunit.xml ... 3 / 3 (100%) -Detected 2 tests where the duration exceeded the maximum duration. +Detected 2 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\WithDataProvider\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\WithDataProvider\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +1. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\WithDataProvider\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\WithDataProvider\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) Time: %s, Memory: %s diff --git a/test/EndToEnd/Version07/TestCase/WithSetUp/test.phpt b/test/EndToEnd/Version07/TestCase/WithSetUp/test.phpt index a1f5f9d3..95e81c99 100644 --- a/test/EndToEnd/Version07/TestCase/WithSetUp/test.phpt +++ b/test/EndToEnd/Version07/TestCase/WithSetUp/test.phpt @@ -20,11 +20,11 @@ Configuration: %s/EndToEnd/Version07/TestCase/WithSetUp/phpunit.xml ... 3 / 3 (100%) -Detected 3 tests where the duration exceeded the maximum duration. +Detected 3 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.4%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\WithSetUp\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\WithSetUp\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) -3. 00:00.1%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\WithSetUp\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration +1. 00:00.4%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\WithSetUp\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\WithSetUp\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +3. 00:00.1%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\WithSetUp\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration Time: %s, Memory: %s diff --git a/test/EndToEnd/Version07/TestCase/WithSetUpBeforeClass/test.phpt b/test/EndToEnd/Version07/TestCase/WithSetUpBeforeClass/test.phpt index a1830185..6a58aeeb 100644 --- a/test/EndToEnd/Version07/TestCase/WithSetUpBeforeClass/test.phpt +++ b/test/EndToEnd/Version07/TestCase/WithSetUpBeforeClass/test.phpt @@ -20,10 +20,10 @@ Configuration: %s/EndToEnd/Version07/TestCase/WithSetUpBeforeClass/phpunit.xml ... 3 / 3 (100%) -Detected 2 tests where the duration exceeded the maximum duration. +Detected 2 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\WithSetUpBeforeClass\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\WithSetUpBeforeClass\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +1. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\WithSetUpBeforeClass\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\WithSetUpBeforeClass\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) Time: %s, Memory: %s diff --git a/test/EndToEnd/Version07/TestCase/WithTearDown/test.phpt b/test/EndToEnd/Version07/TestCase/WithTearDown/test.phpt index b33b58ec..a817baca 100644 --- a/test/EndToEnd/Version07/TestCase/WithTearDown/test.phpt +++ b/test/EndToEnd/Version07/TestCase/WithTearDown/test.phpt @@ -20,11 +20,11 @@ Configuration: %s/EndToEnd/Version07/TestCase/WithTearDown/phpunit.xml ... 3 / 3 (100%) -Detected 3 tests where the duration exceeded the maximum duration. +Detected 3 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.4%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\WithTearDown\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\WithTearDown\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) -3. 00:00.1%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\WithTearDown\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration +1. 00:00.4%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\WithTearDown\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\WithTearDown\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +3. 00:00.1%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\WithTearDown\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration Time: %s, Memory: %s diff --git a/test/EndToEnd/Version07/TestCase/WithTearDownAfterClass/test.phpt b/test/EndToEnd/Version07/TestCase/WithTearDownAfterClass/test.phpt index 7f9813c3..41eec802 100644 --- a/test/EndToEnd/Version07/TestCase/WithTearDownAfterClass/test.phpt +++ b/test/EndToEnd/Version07/TestCase/WithTearDownAfterClass/test.phpt @@ -20,10 +20,10 @@ Configuration: %s/EndToEnd/Version07/TestCase/WithTearDownAfterClass/phpunit.xml ... 3 / 3 (100%) -Detected 2 tests where the duration exceeded the maximum duration. +Detected 2 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\WithTearDownAfterClass\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\WithTearDownAfterClass\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +1. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\WithTearDownAfterClass\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestCase\WithTearDownAfterClass\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) Time: %s, Memory: %s diff --git a/test/EndToEnd/Version07/TestMethod/WithMaximumDurationAndSlowThresholdAnnotations/test.phpt b/test/EndToEnd/Version07/TestMethod/WithMaximumDurationAndSlowThresholdAnnotations/test.phpt index 39473534..3940140e 100644 --- a/test/EndToEnd/Version07/TestMethod/WithMaximumDurationAndSlowThresholdAnnotations/test.phpt +++ b/test/EndToEnd/Version07/TestMethod/WithMaximumDurationAndSlowThresholdAnnotations/test.phpt @@ -20,7 +20,7 @@ Configuration: %s/EndToEnd/Version07/TestMethod/WithMaximumDurationAndSlowThresh .. 2 / 2 (100%) -Detected 1 test where the duration exceeded the maximum duration. +Detected 1 test where the duration exceeded the maximum duration (00:00.100). 1. 00:00.3%s (00:00.200) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestMethod\WithMaximumDurationAndSlowThresholdAnnotations\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromAnnotationWhenTestMethodHasMaximumDurationAndSlowThresholdAnnotations diff --git a/test/EndToEnd/Version07/TestMethod/WithMaximumDurationAnnotation/test.phpt b/test/EndToEnd/Version07/TestMethod/WithMaximumDurationAnnotation/test.phpt index f96186b5..4273616c 100644 --- a/test/EndToEnd/Version07/TestMethod/WithMaximumDurationAnnotation/test.phpt +++ b/test/EndToEnd/Version07/TestMethod/WithMaximumDurationAnnotation/test.phpt @@ -20,10 +20,10 @@ Configuration: %s/EndToEnd/Version07/TestMethod/WithMaximumDurationAnnotation/ph .... 4 / 4 (100%) -Detected 2 tests where the duration exceeded the maximum duration. +Detected 2 tests where the duration exceeded the maximum duration (00:00.100). 1. 00:00.3%s (00:00.200) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestMethod\WithMaximumDurationAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromAnnotationWhenTestMethodHasValidMaximumDurationAnnotation -2. 00:00.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestMethod\WithMaximumDurationAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWhenTestMethodHasInvalidMaximumDurationAnnotation +2. 00:00.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestMethod\WithMaximumDurationAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWhenTestMethodHasInvalidMaximumDurationAnnotation Time: %s, Memory: %s diff --git a/test/EndToEnd/Version07/TestMethod/WithRunInSeparateProcessAnnotation/test.phpt b/test/EndToEnd/Version07/TestMethod/WithRunInSeparateProcessAnnotation/test.phpt index 909dae95..2f4910a3 100644 --- a/test/EndToEnd/Version07/TestMethod/WithRunInSeparateProcessAnnotation/test.phpt +++ b/test/EndToEnd/Version07/TestMethod/WithRunInSeparateProcessAnnotation/test.phpt @@ -25,12 +25,12 @@ Configuration: %s/EndToEnd/Version07/TestMethod/WithRunInSeparateProcessAnnotati .... 4 / 4 (100%) -Detected 4 tests where the duration exceeded the maximum duration. +Detected 4 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:01.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestMethod\WithRunInSeparateProcessAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWhenMethodHasRunInSeparateProcessAnnotation -2. 00:01.0%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestMethod\WithRunInSeparateProcessAnnotation\SleeperTest::testSleeperSleepsShorterThanMaximumDurationFromXmlConfigurationWhenMethodHasRunInSeparateProcessAnnotation -3. 00:00.8%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestMethod\WithRunInSeparateProcessAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfiguration -4. 00:00.6%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestMethod\WithRunInSeparateProcessAnnotation\SleeperTest::testSleeperSleepsShorterThanMaximumDurationFromXmlConfiguration +1. 00:01.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestMethod\WithRunInSeparateProcessAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWhenMethodHasRunInSeparateProcessAnnotation +2. 00:01.0%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestMethod\WithRunInSeparateProcessAnnotation\SleeperTest::testSleeperSleepsShorterThanMaximumDurationFromXmlConfigurationWhenMethodHasRunInSeparateProcessAnnotation +3. 00:00.8%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestMethod\WithRunInSeparateProcessAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfiguration +4. 00:00.6%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestMethod\WithRunInSeparateProcessAnnotation\SleeperTest::testSleeperSleepsShorterThanMaximumDurationFromXmlConfiguration Time: %s, Memory: %s diff --git a/test/EndToEnd/Version07/TestMethod/WithSlowThresholdAndMaximumDurationAnnotations/test.phpt b/test/EndToEnd/Version07/TestMethod/WithSlowThresholdAndMaximumDurationAnnotations/test.phpt index 142ad08a..2dc2ccc5 100644 --- a/test/EndToEnd/Version07/TestMethod/WithSlowThresholdAndMaximumDurationAnnotations/test.phpt +++ b/test/EndToEnd/Version07/TestMethod/WithSlowThresholdAndMaximumDurationAnnotations/test.phpt @@ -20,7 +20,7 @@ Configuration: %s/EndToEnd/Version07/TestMethod/WithSlowThresholdAndMaximumDurat .. 2 / 2 (100%) -Detected 1 test where the duration exceeded the maximum duration. +Detected 1 test where the duration exceeded the maximum duration (00:00.100). 1. 00:00.3%s (00:00.200) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestMethod\WithSlowThresholdAndMaximumDurationAnnotations\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromAnnotationWhenTestMethodHasMaximumDurationAndSlowThresholdAnnotations diff --git a/test/EndToEnd/Version07/TestMethod/WithSlowThresholdAnnotation/test.phpt b/test/EndToEnd/Version07/TestMethod/WithSlowThresholdAnnotation/test.phpt index 0c514ee2..747f32dd 100644 --- a/test/EndToEnd/Version07/TestMethod/WithSlowThresholdAnnotation/test.phpt +++ b/test/EndToEnd/Version07/TestMethod/WithSlowThresholdAnnotation/test.phpt @@ -20,10 +20,10 @@ Configuration: %s/EndToEnd/Version07/TestMethod/WithSlowThresholdAnnotation/phpu .... 4 / 4 (100%) -Detected 2 tests where the duration exceeded the maximum duration. +Detected 2 tests where the duration exceeded the maximum duration (00:00.100). 1. 00:00.3%s (00:00.200) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestMethod\WithSlowThresholdAnnotation\SleeperTest::testSleeperSleepsLongerThanSlowThresholdFromAnnotationWhenTestMethodHasValidSlowThresholdAnnotation -2. 00:00.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestMethod\WithSlowThresholdAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWhenTestMethodHasInvalidSlowThresholdAnnotation +2. 00:00.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version07\TestMethod\WithSlowThresholdAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWhenTestMethodHasInvalidSlowThresholdAnnotation Time: %s, Memory: %s diff --git a/test/EndToEnd/Version08/Configuration/Defaults/test.phpt b/test/EndToEnd/Version08/Configuration/Defaults/test.phpt index 50cc1202..86b2ae76 100644 --- a/test/EndToEnd/Version08/Configuration/Defaults/test.phpt +++ b/test/EndToEnd/Version08/Configuration/Defaults/test.phpt @@ -20,18 +20,18 @@ Configuration: %s/EndToEnd/Version08/Configuration/Defaults/phpunit.xml ............ 12 / 12 (100%) -Detected 11 tests where the duration exceeded the maximum duration. - - 1. 00:01.6%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #10 (1600) - 2. 00:01.5%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #9 (1500) - 3. 00:01.4%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #8 (1400) - 4. 00:01.3%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #7 (1300) - 5. 00:01.2%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #6 (1200) - 6. 00:01.1%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #5 (1100) - 7. 00:01.0%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #4 (1000) - 8. 00:00.9%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #3 (900) - 9. 00:00.8%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #2 (800) -10. 00:00.7%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #1 (700) +Detected 11 tests where the duration exceeded the maximum duration (00:00.500). + + 1. 00:01.6%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #10 (1600) + 2. 00:01.5%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #9 (1500) + 3. 00:01.4%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #8 (1400) + 4. 00:01.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #7 (1300) + 5. 00:01.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #6 (1200) + 6. 00:01.1%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #5 (1100) + 7. 00:01.0%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #4 (1000) + 8. 00:00.9%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #3 (900) + 9. 00:00.8%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #2 (800) +10. 00:00.7%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #1 (700) There is 1 additional slow test that is not listed here. diff --git a/test/EndToEnd/Version08/Configuration/MaximumCount/test.phpt b/test/EndToEnd/Version08/Configuration/MaximumCount/test.phpt index 7ea42000..9810da48 100644 --- a/test/EndToEnd/Version08/Configuration/MaximumCount/test.phpt +++ b/test/EndToEnd/Version08/Configuration/MaximumCount/test.phpt @@ -20,11 +20,11 @@ Configuration: %s/EndToEnd/Version08/Configuration/MaximumCount/phpunit.xml ...... 6 / 6 (100%) -Detected 5 tests where the duration exceeded the maximum duration. +Detected 5 tests where the duration exceeded the maximum duration (00:00.500). -1. 00:01.0%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\Configuration\MaximumCount\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #4 (1000) -2. 00:00.9%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\Configuration\MaximumCount\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #3 (900) -3. 00:00.8%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\Configuration\MaximumCount\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #2 (800) +1. 00:01.0%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\Configuration\MaximumCount\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #4 (1000) +2. 00:00.9%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\Configuration\MaximumCount\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #3 (900) +3. 00:00.8%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\Configuration\MaximumCount\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #2 (800) There are 2 additional slow tests that are not listed here. diff --git a/test/EndToEnd/Version08/Configuration/MaximumDuration/test.phpt b/test/EndToEnd/Version08/Configuration/MaximumDuration/test.phpt index 1e8e3a37..93d8d32e 100644 --- a/test/EndToEnd/Version08/Configuration/MaximumDuration/test.phpt +++ b/test/EndToEnd/Version08/Configuration/MaximumDuration/test.phpt @@ -20,18 +20,18 @@ Configuration: %s/EndToEnd/Version08/Configuration/MaximumDuration/phpunit.xml ............ 12 / 12 (100%) -Detected 11 tests where the duration exceeded the maximum duration. - - 1. 00:01.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #10 (1200) - 2. 00:01.1%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #9 (1100) - 3. 00:01.0%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #8 (1000) - 4. 00:00.9%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #7 (900) - 5. 00:00.8%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #6 (800) - 6. 00:00.7%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #5 (700) - 7. 00:00.6%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #4 (600) - 8. 00:00.5%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #3 (500) - 9. 00:00.4%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #2 (400) -10. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +Detected 11 tests where the duration exceeded the maximum duration (00:00.100). + + 1. 00:01.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #10 (1200) + 2. 00:01.1%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #9 (1100) + 3. 00:01.0%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #8 (1000) + 4. 00:00.9%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #7 (900) + 5. 00:00.8%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #6 (800) + 6. 00:00.7%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #5 (700) + 7. 00:00.6%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #4 (600) + 8. 00:00.5%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #3 (500) + 9. 00:00.4%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #2 (400) +10. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) There is 1 additional slow test that is not listed here. diff --git a/test/EndToEnd/Version08/TestCase/Bare/test.phpt b/test/EndToEnd/Version08/TestCase/Bare/test.phpt index 4a59f84d..f55ea448 100644 --- a/test/EndToEnd/Version08/TestCase/Bare/test.phpt +++ b/test/EndToEnd/Version08/TestCase/Bare/test.phpt @@ -20,10 +20,10 @@ Configuration: %s/EndToEnd/Version08/TestCase/Bare/phpunit.xml ... 3 / 3 (100%) -Detected 2 tests where the duration exceeded the maximum duration. +Detected 2 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\Bare\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\Bare\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +1. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\Bare\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\Bare\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) Time: %s, Memory: %s diff --git a/test/EndToEnd/Version08/TestCase/Combination/test.phpt b/test/EndToEnd/Version08/TestCase/Combination/test.phpt index 432e09e0..f2996769 100644 --- a/test/EndToEnd/Version08/TestCase/Combination/test.phpt +++ b/test/EndToEnd/Version08/TestCase/Combination/test.phpt @@ -20,11 +20,11 @@ Configuration: %s/EndToEnd/Version08/TestCase/Combination/phpunit.xml ... 3 / 3 (100%) -Detected 3 tests where the duration exceeded the maximum duration. +Detected 3 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.9%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\Combination\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.8%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\Combination\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) -3. 00:00.6%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\Combination\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration +1. 00:00.9%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\Combination\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.8%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\Combination\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +3. 00:00.6%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\Combination\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration Time: %s, Memory: %s diff --git a/test/EndToEnd/Version08/TestCase/WithAfterAnnotation/test.phpt b/test/EndToEnd/Version08/TestCase/WithAfterAnnotation/test.phpt index 534c6366..6f7350fb 100644 --- a/test/EndToEnd/Version08/TestCase/WithAfterAnnotation/test.phpt +++ b/test/EndToEnd/Version08/TestCase/WithAfterAnnotation/test.phpt @@ -20,11 +20,11 @@ Configuration: %s/EndToEnd/Version08/TestCase/WithAfterAnnotation/phpunit.xml ... 3 / 3 (100%) -Detected 3 tests where the duration exceeded the maximum duration. +Detected 3 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.4%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\WithAfterAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\WithAfterAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) -3. 00:00.1%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\WithAfterAnnotation\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration +1. 00:00.4%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\WithAfterAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\WithAfterAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +3. 00:00.1%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\WithAfterAnnotation\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration Time: %s, Memory: %s diff --git a/test/EndToEnd/Version08/TestCase/WithAfterClassAnnotation/test.phpt b/test/EndToEnd/Version08/TestCase/WithAfterClassAnnotation/test.phpt index 491312ed..390ad6a9 100644 --- a/test/EndToEnd/Version08/TestCase/WithAfterClassAnnotation/test.phpt +++ b/test/EndToEnd/Version08/TestCase/WithAfterClassAnnotation/test.phpt @@ -20,10 +20,10 @@ Configuration: %s/EndToEnd/Version08/TestCase/WithAfterClassAnnotation/phpunit.x ... 3 / 3 (100%) -Detected 2 tests where the duration exceeded the maximum duration. +Detected 2 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\WithAfterClassAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\WithAfterClassAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +1. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\WithAfterClassAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\WithAfterClassAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) Time: %s, Memory: %s diff --git a/test/EndToEnd/Version08/TestCase/WithAssertPostConditions/test.phpt b/test/EndToEnd/Version08/TestCase/WithAssertPostConditions/test.phpt index f664931b..97643908 100644 --- a/test/EndToEnd/Version08/TestCase/WithAssertPostConditions/test.phpt +++ b/test/EndToEnd/Version08/TestCase/WithAssertPostConditions/test.phpt @@ -20,11 +20,11 @@ Configuration: %s/EndToEnd/Version08/TestCase/WithAssertPostConditions/phpunit.x ... 3 / 3 (100%) -Detected 3 tests where the duration exceeded the maximum duration. +Detected 3 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.4%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\WithAssertPostConditions\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\WithAssertPostConditions\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) -3. 00:00.1%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\WithAssertPostConditions\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration +1. 00:00.4%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\WithAssertPostConditions\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\WithAssertPostConditions\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +3. 00:00.1%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\WithAssertPostConditions\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration Time: %s, Memory: %s diff --git a/test/EndToEnd/Version08/TestCase/WithAssertPreConditions/test.phpt b/test/EndToEnd/Version08/TestCase/WithAssertPreConditions/test.phpt index 189aaab0..1cf6d64b 100644 --- a/test/EndToEnd/Version08/TestCase/WithAssertPreConditions/test.phpt +++ b/test/EndToEnd/Version08/TestCase/WithAssertPreConditions/test.phpt @@ -20,11 +20,11 @@ Configuration: %s/EndToEnd/Version08/TestCase/WithAssertPreConditions/phpunit.xm ... 3 / 3 (100%) -Detected 3 tests where the duration exceeded the maximum duration. +Detected 3 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.4%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\WithAssertPreConditions\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\WithAssertPreConditions\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) -3. 00:00.1%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\WithAssertPreConditions\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration +1. 00:00.4%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\WithAssertPreConditions\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\WithAssertPreConditions\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +3. 00:00.1%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\WithAssertPreConditions\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration Time: %s, Memory: %s diff --git a/test/EndToEnd/Version08/TestCase/WithBeforeAnnotation/test.phpt b/test/EndToEnd/Version08/TestCase/WithBeforeAnnotation/test.phpt index f550738a..5ba9e8fd 100644 --- a/test/EndToEnd/Version08/TestCase/WithBeforeAnnotation/test.phpt +++ b/test/EndToEnd/Version08/TestCase/WithBeforeAnnotation/test.phpt @@ -20,11 +20,11 @@ Configuration: %s/EndToEnd/Version08/TestCase/WithBeforeAnnotation/phpunit.xml ... 3 / 3 (100%) -Detected 3 tests where the duration exceeded the maximum duration. +Detected 3 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.4%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\WithBeforeAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\WithBeforeAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) -3. 00:00.1%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\WithBeforeAnnotation\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration +1. 00:00.4%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\WithBeforeAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\WithBeforeAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +3. 00:00.1%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\WithBeforeAnnotation\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration Time: %s, Memory: %s diff --git a/test/EndToEnd/Version08/TestCase/WithBeforeClassAnnotation/test.phpt b/test/EndToEnd/Version08/TestCase/WithBeforeClassAnnotation/test.phpt index c039a0af..ee84ea99 100644 --- a/test/EndToEnd/Version08/TestCase/WithBeforeClassAnnotation/test.phpt +++ b/test/EndToEnd/Version08/TestCase/WithBeforeClassAnnotation/test.phpt @@ -20,10 +20,10 @@ Configuration: %s/EndToEnd/Version08/TestCase/WithBeforeClassAnnotation/phpunit. ... 3 / 3 (100%) -Detected 2 tests where the duration exceeded the maximum duration. +Detected 2 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\WithBeforeClassAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\WithBeforeClassAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +1. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\WithBeforeClassAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\WithBeforeClassAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) Time: %s, Memory: %s diff --git a/test/EndToEnd/Version08/TestCase/WithDataProvider/test.phpt b/test/EndToEnd/Version08/TestCase/WithDataProvider/test.phpt index 8c1dd54b..5499470a 100644 --- a/test/EndToEnd/Version08/TestCase/WithDataProvider/test.phpt +++ b/test/EndToEnd/Version08/TestCase/WithDataProvider/test.phpt @@ -20,10 +20,10 @@ Configuration: %s/EndToEnd/Version08/TestCase/WithDataProvider/phpunit.xml ... 3 / 3 (100%) -Detected 2 tests where the duration exceeded the maximum duration. +Detected 2 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\WithDataProvider\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\WithDataProvider\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +1. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\WithDataProvider\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\WithDataProvider\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) Time: %s, Memory: %s diff --git a/test/EndToEnd/Version08/TestCase/WithSetUp/test.phpt b/test/EndToEnd/Version08/TestCase/WithSetUp/test.phpt index 64537bbf..c97b9db6 100644 --- a/test/EndToEnd/Version08/TestCase/WithSetUp/test.phpt +++ b/test/EndToEnd/Version08/TestCase/WithSetUp/test.phpt @@ -20,11 +20,11 @@ Configuration: %s/EndToEnd/Version08/TestCase/WithSetUp/phpunit.xml ... 3 / 3 (100%) -Detected 3 tests where the duration exceeded the maximum duration. +Detected 3 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.4%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\WithSetUp\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\WithSetUp\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) -3. 00:00.1%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\WithSetUp\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration +1. 00:00.4%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\WithSetUp\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\WithSetUp\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +3. 00:00.1%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\WithSetUp\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration Time: %s, Memory: %s diff --git a/test/EndToEnd/Version08/TestCase/WithSetUpBeforeClass/test.phpt b/test/EndToEnd/Version08/TestCase/WithSetUpBeforeClass/test.phpt index 69cc4309..1df53f47 100644 --- a/test/EndToEnd/Version08/TestCase/WithSetUpBeforeClass/test.phpt +++ b/test/EndToEnd/Version08/TestCase/WithSetUpBeforeClass/test.phpt @@ -20,10 +20,10 @@ Configuration: %s/EndToEnd/Version08/TestCase/WithSetUpBeforeClass/phpunit.xml ... 3 / 3 (100%) -Detected 2 tests where the duration exceeded the maximum duration. +Detected 2 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\WithSetUpBeforeClass\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\WithSetUpBeforeClass\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +1. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\WithSetUpBeforeClass\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\WithSetUpBeforeClass\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) Time: %s, Memory: %s diff --git a/test/EndToEnd/Version08/TestCase/WithTearDown/test.phpt b/test/EndToEnd/Version08/TestCase/WithTearDown/test.phpt index ba752222..abe54856 100644 --- a/test/EndToEnd/Version08/TestCase/WithTearDown/test.phpt +++ b/test/EndToEnd/Version08/TestCase/WithTearDown/test.phpt @@ -20,11 +20,11 @@ Configuration: %s/EndToEnd/Version08/TestCase/WithTearDown/phpunit.xml ... 3 / 3 (100%) -Detected 3 tests where the duration exceeded the maximum duration. +Detected 3 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.4%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\WithTearDown\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\WithTearDown\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) -3. 00:00.1%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\WithTearDown\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration +1. 00:00.4%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\WithTearDown\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\WithTearDown\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +3. 00:00.1%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\WithTearDown\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration Time: %s, Memory: %s diff --git a/test/EndToEnd/Version08/TestCase/WithTearDownAfterClass/test.phpt b/test/EndToEnd/Version08/TestCase/WithTearDownAfterClass/test.phpt index a5236b15..d7c3301e 100644 --- a/test/EndToEnd/Version08/TestCase/WithTearDownAfterClass/test.phpt +++ b/test/EndToEnd/Version08/TestCase/WithTearDownAfterClass/test.phpt @@ -20,10 +20,10 @@ Configuration: %s/EndToEnd/Version08/TestCase/WithTearDownAfterClass/phpunit.xml ... 3 / 3 (100%) -Detected 2 tests where the duration exceeded the maximum duration. +Detected 2 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\WithTearDownAfterClass\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\WithTearDownAfterClass\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +1. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\WithTearDownAfterClass\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestCase\WithTearDownAfterClass\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) Time: %s, Memory: %s diff --git a/test/EndToEnd/Version08/TestMethod/WithMaximumDurationAndSlowThresholdAnnotations/test.phpt b/test/EndToEnd/Version08/TestMethod/WithMaximumDurationAndSlowThresholdAnnotations/test.phpt index 00d7aafd..3a00009b 100644 --- a/test/EndToEnd/Version08/TestMethod/WithMaximumDurationAndSlowThresholdAnnotations/test.phpt +++ b/test/EndToEnd/Version08/TestMethod/WithMaximumDurationAndSlowThresholdAnnotations/test.phpt @@ -20,7 +20,7 @@ Configuration: %s/EndToEnd/Version08/TestMethod/WithMaximumDurationAndSlowThresh .. 2 / 2 (100%) -Detected 1 test where the duration exceeded the maximum duration. +Detected 1 test where the duration exceeded the maximum duration (00:00.100). 1. 00:00.3%s (00:00.200) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestMethod\WithMaximumDurationAndSlowThresholdAnnotations\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromAnnotationWhenTestMethodHasMaximumDurationAndSlowThresholdAnnotations diff --git a/test/EndToEnd/Version08/TestMethod/WithMaximumDurationAnnotation/test.phpt b/test/EndToEnd/Version08/TestMethod/WithMaximumDurationAnnotation/test.phpt index 6013cd3e..71655188 100644 --- a/test/EndToEnd/Version08/TestMethod/WithMaximumDurationAnnotation/test.phpt +++ b/test/EndToEnd/Version08/TestMethod/WithMaximumDurationAnnotation/test.phpt @@ -20,10 +20,10 @@ Configuration: %s/EndToEnd/Version08/TestMethod/WithMaximumDurationAnnotation/ph .... 4 / 4 (100%) -Detected 2 tests where the duration exceeded the maximum duration. +Detected 2 tests where the duration exceeded the maximum duration (00:00.100). 1. 00:00.3%s (00:00.200) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestMethod\WithMaximumDurationAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromAnnotationWhenTestMethodHasValidMaximumDurationAnnotation -2. 00:00.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestMethod\WithMaximumDurationAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWhenTestMethodHasInvalidMaximumDurationAnnotation +2. 00:00.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestMethod\WithMaximumDurationAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWhenTestMethodHasInvalidMaximumDurationAnnotation Time: %s, Memory: %s diff --git a/test/EndToEnd/Version08/TestMethod/WithRunInSeparateProcessAnnotation/test.phpt b/test/EndToEnd/Version08/TestMethod/WithRunInSeparateProcessAnnotation/test.phpt index a144b650..ebb8f2f9 100644 --- a/test/EndToEnd/Version08/TestMethod/WithRunInSeparateProcessAnnotation/test.phpt +++ b/test/EndToEnd/Version08/TestMethod/WithRunInSeparateProcessAnnotation/test.phpt @@ -25,12 +25,12 @@ Configuration: %s/EndToEnd/Version08/TestMethod/WithRunInSeparateProcessAnnotati .... 4 / 4 (100%) -Detected 4 tests where the duration exceeded the maximum duration. +Detected 4 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:01.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestMethod\WithRunInSeparateProcessAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWhenMethodHasRunInSeparateProcessAnnotation -2. 00:01.0%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestMethod\WithRunInSeparateProcessAnnotation\SleeperTest::testSleeperSleepsShorterThanMaximumDurationFromXmlConfigurationWhenMethodHasRunInSeparateProcessAnnotation -3. 00:00.8%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestMethod\WithRunInSeparateProcessAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfiguration -4. 00:00.6%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestMethod\WithRunInSeparateProcessAnnotation\SleeperTest::testSleeperSleepsShorterThanMaximumDurationFromXmlConfiguration +1. 00:01.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestMethod\WithRunInSeparateProcessAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWhenMethodHasRunInSeparateProcessAnnotation +2. 00:01.0%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestMethod\WithRunInSeparateProcessAnnotation\SleeperTest::testSleeperSleepsShorterThanMaximumDurationFromXmlConfigurationWhenMethodHasRunInSeparateProcessAnnotation +3. 00:00.8%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestMethod\WithRunInSeparateProcessAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfiguration +4. 00:00.6%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestMethod\WithRunInSeparateProcessAnnotation\SleeperTest::testSleeperSleepsShorterThanMaximumDurationFromXmlConfiguration Time: %s, Memory: %s diff --git a/test/EndToEnd/Version08/TestMethod/WithSlowThresholdAndMaximumDurationAnnotations/test.phpt b/test/EndToEnd/Version08/TestMethod/WithSlowThresholdAndMaximumDurationAnnotations/test.phpt index cc03abc2..187419a5 100644 --- a/test/EndToEnd/Version08/TestMethod/WithSlowThresholdAndMaximumDurationAnnotations/test.phpt +++ b/test/EndToEnd/Version08/TestMethod/WithSlowThresholdAndMaximumDurationAnnotations/test.phpt @@ -20,7 +20,7 @@ Configuration: %s/EndToEnd/Version08/TestMethod/WithSlowThresholdAndMaximumDurat .. 2 / 2 (100%) -Detected 1 test where the duration exceeded the maximum duration. +Detected 1 test where the duration exceeded the maximum duration (00:00.100). 1. 00:00.3%s (00:00.200) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestMethod\WithSlowThresholdAndMaximumDurationAnnotations\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromAnnotationWhenTestMethodHasMaximumDurationAndSlowThresholdAnnotations diff --git a/test/EndToEnd/Version08/TestMethod/WithSlowThresholdAnnotation/test.phpt b/test/EndToEnd/Version08/TestMethod/WithSlowThresholdAnnotation/test.phpt index 44e22f7c..5b13a1a0 100644 --- a/test/EndToEnd/Version08/TestMethod/WithSlowThresholdAnnotation/test.phpt +++ b/test/EndToEnd/Version08/TestMethod/WithSlowThresholdAnnotation/test.phpt @@ -20,10 +20,10 @@ Configuration: %s/EndToEnd/Version08/TestMethod/WithSlowThresholdAnnotation/phpu .... 4 / 4 (100%) -Detected 2 tests where the duration exceeded the maximum duration. +Detected 2 tests where the duration exceeded the maximum duration (00:00.100). 1. 00:00.3%s (00:00.200) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestMethod\WithSlowThresholdAnnotation\SleeperTest::testSleeperSleepsLongerThanSlowThresholdFromAnnotationWhenTestMethodHasValidSlowThresholdAnnotation -2. 00:00.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestMethod\WithSlowThresholdAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWhenTestMethodHasInvalidSlowThresholdAnnotation +2. 00:00.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version08\TestMethod\WithSlowThresholdAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWhenTestMethodHasInvalidSlowThresholdAnnotation Time: %s, Memory: %s diff --git a/test/EndToEnd/Version09/Configuration/Defaults/test.phpt b/test/EndToEnd/Version09/Configuration/Defaults/test.phpt index 583d9fcc..03e5e4b3 100644 --- a/test/EndToEnd/Version09/Configuration/Defaults/test.phpt +++ b/test/EndToEnd/Version09/Configuration/Defaults/test.phpt @@ -20,18 +20,18 @@ Configuration: %s/EndToEnd/Version09/Configuration/Defaults/phpunit.xml ............ 12 / 12 (100%) -Detected 11 tests where the duration exceeded the maximum duration. - - 1. 00:01.6%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #10 (1600) - 2. 00:01.5%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #9 (1500) - 3. 00:01.4%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #8 (1400) - 4. 00:01.3%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #7 (1300) - 5. 00:01.2%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #6 (1200) - 6. 00:01.1%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #5 (1100) - 7. 00:01.0%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #4 (1000) - 8. 00:00.9%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #3 (900) - 9. 00:00.8%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #2 (800) -10. 00:00.7%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #1 (700) +Detected 11 tests where the duration exceeded the maximum duration (00:00.500). + + 1. 00:01.6%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #10 (1600) + 2. 00:01.5%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #9 (1500) + 3. 00:01.4%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #8 (1400) + 4. 00:01.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #7 (1300) + 5. 00:01.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #6 (1200) + 6. 00:01.1%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #5 (1100) + 7. 00:01.0%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #4 (1000) + 8. 00:00.9%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #3 (900) + 9. 00:00.8%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #2 (800) +10. 00:00.7%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #1 (700) There is 1 additional slow test that is not listed here. diff --git a/test/EndToEnd/Version09/Configuration/MaximumCount/test.phpt b/test/EndToEnd/Version09/Configuration/MaximumCount/test.phpt index 367f9acb..44198856 100644 --- a/test/EndToEnd/Version09/Configuration/MaximumCount/test.phpt +++ b/test/EndToEnd/Version09/Configuration/MaximumCount/test.phpt @@ -20,11 +20,11 @@ Configuration: %s/EndToEnd/Version09/Configuration/MaximumCount/phpunit.xml ...... 6 / 6 (100%) -Detected 5 tests where the duration exceeded the maximum duration. +Detected 5 tests where the duration exceeded the maximum duration (00:00.500). -1. 00:01.0%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\Configuration\MaximumCount\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #4 (1000) -2. 00:00.9%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\Configuration\MaximumCount\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #3 (900) -3. 00:00.8%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\Configuration\MaximumCount\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #2 (800) +1. 00:01.0%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\Configuration\MaximumCount\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #4 (1000) +2. 00:00.9%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\Configuration\MaximumCount\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #3 (900) +3. 00:00.8%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\Configuration\MaximumCount\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #2 (800) There are 2 additional slow tests that are not listed here. diff --git a/test/EndToEnd/Version09/Configuration/MaximumDuration/test.phpt b/test/EndToEnd/Version09/Configuration/MaximumDuration/test.phpt index 893d9e43..0d0e2281 100644 --- a/test/EndToEnd/Version09/Configuration/MaximumDuration/test.phpt +++ b/test/EndToEnd/Version09/Configuration/MaximumDuration/test.phpt @@ -20,18 +20,18 @@ Configuration: %s/EndToEnd/Version09/Configuration/MaximumDuration/phpunit.xml ............ 12 / 12 (100%) -Detected 11 tests where the duration exceeded the maximum duration. - - 1. 00:01.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #10 (1200) - 2. 00:01.1%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #9 (1100) - 3. 00:01.0%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #8 (1000) - 4. 00:00.9%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #7 (900) - 5. 00:00.8%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #6 (800) - 6. 00:00.7%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #5 (700) - 7. 00:00.6%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #4 (600) - 8. 00:00.5%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #3 (500) - 9. 00:00.4%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #2 (400) -10. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +Detected 11 tests where the duration exceeded the maximum duration (00:00.100). + + 1. 00:01.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #10 (1200) + 2. 00:01.1%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #9 (1100) + 3. 00:01.0%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #8 (1000) + 4. 00:00.9%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #7 (900) + 5. 00:00.8%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #6 (800) + 6. 00:00.7%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #5 (700) + 7. 00:00.6%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #4 (600) + 8. 00:00.5%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #3 (500) + 9. 00:00.4%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #2 (400) +10. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) There is 1 additional slow test that is not listed here. diff --git a/test/EndToEnd/Version09/TestCase/Bare/test.phpt b/test/EndToEnd/Version09/TestCase/Bare/test.phpt index bfcfe99e..149d32ea 100644 --- a/test/EndToEnd/Version09/TestCase/Bare/test.phpt +++ b/test/EndToEnd/Version09/TestCase/Bare/test.phpt @@ -20,10 +20,10 @@ Configuration: %s/EndToEnd/Version09/TestCase/Bare/phpunit.xml ... 3 / 3 (100%) -Detected 2 tests where the duration exceeded the maximum duration. +Detected 2 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\Bare\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\Bare\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +1. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\Bare\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\Bare\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) Time: %s, Memory: %s diff --git a/test/EndToEnd/Version09/TestCase/Combination/test.phpt b/test/EndToEnd/Version09/TestCase/Combination/test.phpt index 849687d8..3707cb2c 100644 --- a/test/EndToEnd/Version09/TestCase/Combination/test.phpt +++ b/test/EndToEnd/Version09/TestCase/Combination/test.phpt @@ -20,11 +20,11 @@ Configuration: %s/EndToEnd/Version09/TestCase/Combination/phpunit.xml ... 3 / 3 (100%) -Detected 3 tests where the duration exceeded the maximum duration. +Detected 3 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.9%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\Combination\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.8%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\Combination\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) -3. 00:00.6%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\Combination\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration +1. 00:00.9%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\Combination\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.8%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\Combination\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +3. 00:00.6%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\Combination\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration Time: %s, Memory: %s diff --git a/test/EndToEnd/Version09/TestCase/WithAfterAnnotation/test.phpt b/test/EndToEnd/Version09/TestCase/WithAfterAnnotation/test.phpt index 87f4e36b..a2893812 100644 --- a/test/EndToEnd/Version09/TestCase/WithAfterAnnotation/test.phpt +++ b/test/EndToEnd/Version09/TestCase/WithAfterAnnotation/test.phpt @@ -20,11 +20,11 @@ Configuration: %s/EndToEnd/Version09/TestCase/WithAfterAnnotation/phpunit.xml ... 3 / 3 (100%) -Detected 3 tests where the duration exceeded the maximum duration. +Detected 3 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.4%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\WithAfterAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\WithAfterAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) -3. 00:00.1%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\WithAfterAnnotation\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration +1. 00:00.4%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\WithAfterAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\WithAfterAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +3. 00:00.1%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\WithAfterAnnotation\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration Time: %s, Memory: %s diff --git a/test/EndToEnd/Version09/TestCase/WithAfterClassAnnotation/test.phpt b/test/EndToEnd/Version09/TestCase/WithAfterClassAnnotation/test.phpt index 10da4460..70497364 100644 --- a/test/EndToEnd/Version09/TestCase/WithAfterClassAnnotation/test.phpt +++ b/test/EndToEnd/Version09/TestCase/WithAfterClassAnnotation/test.phpt @@ -20,10 +20,10 @@ Configuration: %s/EndToEnd/Version09/TestCase/WithAfterClassAnnotation/phpunit.x ... 3 / 3 (100%) -Detected 2 tests where the duration exceeded the maximum duration. +Detected 2 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\WithAfterClassAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\WithAfterClassAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +1. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\WithAfterClassAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\WithAfterClassAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) Time: %s, Memory: %s diff --git a/test/EndToEnd/Version09/TestCase/WithAssertPostConditions/test.phpt b/test/EndToEnd/Version09/TestCase/WithAssertPostConditions/test.phpt index 1e05b36a..dad6eb71 100644 --- a/test/EndToEnd/Version09/TestCase/WithAssertPostConditions/test.phpt +++ b/test/EndToEnd/Version09/TestCase/WithAssertPostConditions/test.phpt @@ -20,11 +20,11 @@ Configuration: %s/EndToEnd/Version09/TestCase/WithAssertPostConditions/phpunit.x ... 3 / 3 (100%) -Detected 3 tests where the duration exceeded the maximum duration. +Detected 3 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.4%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\WithAssertPostConditions\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\WithAssertPostConditions\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) -3. 00:00.1%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\WithAssertPostConditions\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration +1. 00:00.4%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\WithAssertPostConditions\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\WithAssertPostConditions\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +3. 00:00.1%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\WithAssertPostConditions\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration Time: %s, Memory: %s diff --git a/test/EndToEnd/Version09/TestCase/WithAssertPreConditions/test.phpt b/test/EndToEnd/Version09/TestCase/WithAssertPreConditions/test.phpt index 7edb6c36..c8e27f38 100644 --- a/test/EndToEnd/Version09/TestCase/WithAssertPreConditions/test.phpt +++ b/test/EndToEnd/Version09/TestCase/WithAssertPreConditions/test.phpt @@ -20,11 +20,11 @@ Configuration: %s/EndToEnd/Version09/TestCase/WithAssertPreConditions/phpunit.xm ... 3 / 3 (100%) -Detected 3 tests where the duration exceeded the maximum duration. +Detected 3 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.4%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\WithAssertPreConditions\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\WithAssertPreConditions\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) -3. 00:00.1%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\WithAssertPreConditions\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration +1. 00:00.4%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\WithAssertPreConditions\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\WithAssertPreConditions\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +3. 00:00.1%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\WithAssertPreConditions\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration Time: %s, Memory: %s diff --git a/test/EndToEnd/Version09/TestCase/WithBeforeAnnotation/test.phpt b/test/EndToEnd/Version09/TestCase/WithBeforeAnnotation/test.phpt index bd6ee292..a704e833 100644 --- a/test/EndToEnd/Version09/TestCase/WithBeforeAnnotation/test.phpt +++ b/test/EndToEnd/Version09/TestCase/WithBeforeAnnotation/test.phpt @@ -20,11 +20,11 @@ Configuration: %s/EndToEnd/Version09/TestCase/WithBeforeAnnotation/phpunit.xml ... 3 / 3 (100%) -Detected 3 tests where the duration exceeded the maximum duration. +Detected 3 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.4%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\WithBeforeAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\WithBeforeAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) -3. 00:00.1%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\WithBeforeAnnotation\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration +1. 00:00.4%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\WithBeforeAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\WithBeforeAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +3. 00:00.1%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\WithBeforeAnnotation\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration Time: %s, Memory: %s diff --git a/test/EndToEnd/Version09/TestCase/WithBeforeClassAnnotation/test.phpt b/test/EndToEnd/Version09/TestCase/WithBeforeClassAnnotation/test.phpt index b72babff..ca41707b 100644 --- a/test/EndToEnd/Version09/TestCase/WithBeforeClassAnnotation/test.phpt +++ b/test/EndToEnd/Version09/TestCase/WithBeforeClassAnnotation/test.phpt @@ -20,10 +20,10 @@ Configuration: %s/EndToEnd/Version09/TestCase/WithBeforeClassAnnotation/phpunit. ... 3 / 3 (100%) -Detected 2 tests where the duration exceeded the maximum duration. +Detected 2 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\WithBeforeClassAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\WithBeforeClassAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +1. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\WithBeforeClassAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\WithBeforeClassAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) Time: %s, Memory: %s diff --git a/test/EndToEnd/Version09/TestCase/WithDataProvider/test.phpt b/test/EndToEnd/Version09/TestCase/WithDataProvider/test.phpt index e9a297d5..03e9d068 100644 --- a/test/EndToEnd/Version09/TestCase/WithDataProvider/test.phpt +++ b/test/EndToEnd/Version09/TestCase/WithDataProvider/test.phpt @@ -20,10 +20,10 @@ Configuration: %s/EndToEnd/Version09/TestCase/WithDataProvider/phpunit.xml ... 3 / 3 (100%) -Detected 2 tests where the duration exceeded the maximum duration. +Detected 2 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\WithDataProvider\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\WithDataProvider\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +1. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\WithDataProvider\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\WithDataProvider\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) Time: %s, Memory: %s diff --git a/test/EndToEnd/Version09/TestCase/WithSetUp/test.phpt b/test/EndToEnd/Version09/TestCase/WithSetUp/test.phpt index a060afa0..26d9fcf8 100644 --- a/test/EndToEnd/Version09/TestCase/WithSetUp/test.phpt +++ b/test/EndToEnd/Version09/TestCase/WithSetUp/test.phpt @@ -20,11 +20,11 @@ Configuration: %s/EndToEnd/Version09/TestCase/WithSetUp/phpunit.xml ... 3 / 3 (100%) -Detected 3 tests where the duration exceeded the maximum duration. +Detected 3 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.4%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\WithSetUp\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\WithSetUp\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) -3. 00:00.1%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\WithSetUp\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration +1. 00:00.4%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\WithSetUp\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\WithSetUp\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +3. 00:00.1%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\WithSetUp\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration Time: %s, Memory: %s diff --git a/test/EndToEnd/Version09/TestCase/WithSetUpBeforeClass/test.phpt b/test/EndToEnd/Version09/TestCase/WithSetUpBeforeClass/test.phpt index 4a8f76d9..9c48a3e3 100644 --- a/test/EndToEnd/Version09/TestCase/WithSetUpBeforeClass/test.phpt +++ b/test/EndToEnd/Version09/TestCase/WithSetUpBeforeClass/test.phpt @@ -20,10 +20,10 @@ Configuration: %s/EndToEnd/Version09/TestCase/WithSetUpBeforeClass/phpunit.xml ... 3 / 3 (100%) -Detected 2 tests where the duration exceeded the maximum duration. +Detected 2 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\WithSetUpBeforeClass\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\WithSetUpBeforeClass\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +1. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\WithSetUpBeforeClass\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\WithSetUpBeforeClass\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) Time: %s, Memory: %s diff --git a/test/EndToEnd/Version09/TestCase/WithTearDown/test.phpt b/test/EndToEnd/Version09/TestCase/WithTearDown/test.phpt index f6ad8658..b7d4edf6 100644 --- a/test/EndToEnd/Version09/TestCase/WithTearDown/test.phpt +++ b/test/EndToEnd/Version09/TestCase/WithTearDown/test.phpt @@ -20,11 +20,11 @@ Configuration: %s/EndToEnd/Version09/TestCase/WithTearDown/phpunit.xml ... 3 / 3 (100%) -Detected 3 tests where the duration exceeded the maximum duration. +Detected 3 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.4%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\WithTearDown\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\WithTearDown\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) -3. 00:00.1%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\WithTearDown\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration +1. 00:00.4%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\WithTearDown\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\WithTearDown\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +3. 00:00.1%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\WithTearDown\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration Time: %s, Memory: %s diff --git a/test/EndToEnd/Version09/TestCase/WithTearDownAfterClass/test.phpt b/test/EndToEnd/Version09/TestCase/WithTearDownAfterClass/test.phpt index 36f308c4..1e6a42bc 100644 --- a/test/EndToEnd/Version09/TestCase/WithTearDownAfterClass/test.phpt +++ b/test/EndToEnd/Version09/TestCase/WithTearDownAfterClass/test.phpt @@ -20,10 +20,10 @@ Configuration: %s/EndToEnd/Version09/TestCase/WithTearDownAfterClass/phpunit.xml ... 3 / 3 (100%) -Detected 2 tests where the duration exceeded the maximum duration. +Detected 2 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\WithTearDownAfterClass\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\WithTearDownAfterClass\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +1. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\WithTearDownAfterClass\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestCase\WithTearDownAfterClass\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) Time: %s, Memory: %s diff --git a/test/EndToEnd/Version09/TestMethod/WithMaximumDurationAndSlowThresholdAnnotations/test.phpt b/test/EndToEnd/Version09/TestMethod/WithMaximumDurationAndSlowThresholdAnnotations/test.phpt index 29d647fa..dd84590d 100644 --- a/test/EndToEnd/Version09/TestMethod/WithMaximumDurationAndSlowThresholdAnnotations/test.phpt +++ b/test/EndToEnd/Version09/TestMethod/WithMaximumDurationAndSlowThresholdAnnotations/test.phpt @@ -20,7 +20,7 @@ Configuration: %s/EndToEnd/Version09/TestMethod/WithMaximumDurationAndSlowThresh .. 2 / 2 (100%) -Detected 1 test where the duration exceeded the maximum duration. +Detected 1 test where the duration exceeded the maximum duration (00:00.100). 1. 00:00.3%s (00:00.200) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestMethod\WithMaximumDurationAndSlowThresholdAnnotations\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromAnnotationWhenTestMethodHasMaximumDurationAndSlowThresholdAnnotations diff --git a/test/EndToEnd/Version09/TestMethod/WithMaximumDurationAnnotation/test.phpt b/test/EndToEnd/Version09/TestMethod/WithMaximumDurationAnnotation/test.phpt index f27c71aa..601523be 100644 --- a/test/EndToEnd/Version09/TestMethod/WithMaximumDurationAnnotation/test.phpt +++ b/test/EndToEnd/Version09/TestMethod/WithMaximumDurationAnnotation/test.phpt @@ -20,10 +20,10 @@ Configuration: %s/EndToEnd/Version09/TestMethod/WithMaximumDurationAnnotation/ph .... 4 / 4 (100%) -Detected 2 tests where the duration exceeded the maximum duration. +Detected 2 tests where the duration exceeded the maximum duration (00:00.100). 1. 00:00.3%s (00:00.200) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestMethod\WithMaximumDurationAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromAnnotationWhenTestMethodHasValidMaximumDurationAnnotation -2. 00:00.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestMethod\WithMaximumDurationAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWhenTestMethodHasInvalidMaximumDurationAnnotation +2. 00:00.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestMethod\WithMaximumDurationAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWhenTestMethodHasInvalidMaximumDurationAnnotation Time: %s, Memory: %s diff --git a/test/EndToEnd/Version09/TestMethod/WithRunInSeparateProcessAnnotation/test.phpt b/test/EndToEnd/Version09/TestMethod/WithRunInSeparateProcessAnnotation/test.phpt index 14b4f007..0fcc54a0 100644 --- a/test/EndToEnd/Version09/TestMethod/WithRunInSeparateProcessAnnotation/test.phpt +++ b/test/EndToEnd/Version09/TestMethod/WithRunInSeparateProcessAnnotation/test.phpt @@ -25,12 +25,12 @@ Configuration: %s/EndToEnd/Version09/TestMethod/WithRunInSeparateProcessAnnotati .... 4 / 4 (100%) -Detected 4 tests where the duration exceeded the maximum duration. +Detected 4 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:01.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestMethod\WithRunInSeparateProcessAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWhenMethodHasRunInSeparateProcessAnnotation -2. 00:01.0%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestMethod\WithRunInSeparateProcessAnnotation\SleeperTest::testSleeperSleepsShorterThanMaximumDurationFromXmlConfigurationWhenMethodHasRunInSeparateProcessAnnotation -3. 00:00.8%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestMethod\WithRunInSeparateProcessAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfiguration -4. 00:00.6%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestMethod\WithRunInSeparateProcessAnnotation\SleeperTest::testSleeperSleepsShorterThanMaximumDurationFromXmlConfiguration +1. 00:01.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestMethod\WithRunInSeparateProcessAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWhenMethodHasRunInSeparateProcessAnnotation +2. 00:01.0%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestMethod\WithRunInSeparateProcessAnnotation\SleeperTest::testSleeperSleepsShorterThanMaximumDurationFromXmlConfigurationWhenMethodHasRunInSeparateProcessAnnotation +3. 00:00.8%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestMethod\WithRunInSeparateProcessAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfiguration +4. 00:00.6%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestMethod\WithRunInSeparateProcessAnnotation\SleeperTest::testSleeperSleepsShorterThanMaximumDurationFromXmlConfiguration Time: %s, Memory: %s diff --git a/test/EndToEnd/Version09/TestMethod/WithSlowThresholdAndMaximumDurationAnnotations/test.phpt b/test/EndToEnd/Version09/TestMethod/WithSlowThresholdAndMaximumDurationAnnotations/test.phpt index 9997c355..c94bd0f8 100644 --- a/test/EndToEnd/Version09/TestMethod/WithSlowThresholdAndMaximumDurationAnnotations/test.phpt +++ b/test/EndToEnd/Version09/TestMethod/WithSlowThresholdAndMaximumDurationAnnotations/test.phpt @@ -20,7 +20,7 @@ Configuration: %s/EndToEnd/Version09/TestMethod/WithSlowThresholdAndMaximumDurat .. 2 / 2 (100%) -Detected 1 test where the duration exceeded the maximum duration. +Detected 1 test where the duration exceeded the maximum duration (00:00.100). 1. 00:00.3%s (00:00.200) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestMethod\WithSlowThresholdAndMaximumDurationAnnotations\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromAnnotationWhenTestMethodHasMaximumDurationAndSlowThresholdAnnotations diff --git a/test/EndToEnd/Version09/TestMethod/WithSlowThresholdAnnotation/test.phpt b/test/EndToEnd/Version09/TestMethod/WithSlowThresholdAnnotation/test.phpt index 03ae0c8c..7d297756 100644 --- a/test/EndToEnd/Version09/TestMethod/WithSlowThresholdAnnotation/test.phpt +++ b/test/EndToEnd/Version09/TestMethod/WithSlowThresholdAnnotation/test.phpt @@ -20,10 +20,10 @@ Configuration: %s/EndToEnd/Version09/TestMethod/WithSlowThresholdAnnotation/phpu .... 4 / 4 (100%) -Detected 2 tests where the duration exceeded the maximum duration. +Detected 2 tests where the duration exceeded the maximum duration (00:00.100). 1. 00:00.3%s (00:00.200) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestMethod\WithSlowThresholdAnnotation\SleeperTest::testSleeperSleepsLongerThanSlowThresholdFromAnnotationWhenTestMethodHasValidSlowThresholdAnnotation -2. 00:00.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestMethod\WithSlowThresholdAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWhenTestMethodHasInvalidSlowThresholdAnnotation +2. 00:00.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version09\TestMethod\WithSlowThresholdAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWhenTestMethodHasInvalidSlowThresholdAnnotation Time: %s, Memory: %s diff --git a/test/EndToEnd/Version10/Configuration/Defaults/test.phpt b/test/EndToEnd/Version10/Configuration/Defaults/test.phpt index edcab49d..44aa4972 100644 --- a/test/EndToEnd/Version10/Configuration/Defaults/test.phpt +++ b/test/EndToEnd/Version10/Configuration/Defaults/test.phpt @@ -22,18 +22,18 @@ Configuration: %s/EndToEnd/Version10/Configuration/Defaults/phpunit.xml ............ 12 / 12 (100%) -Detected 11 tests where the duration exceeded the maximum duration. - - 1. 00:01.6%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #10 (1600) - 2. 00:01.5%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #9 (1500) - 3. 00:01.4%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #8 (1400) - 4. 00:01.3%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #7 (1300) - 5. 00:01.2%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #6 (1200) - 6. 00:01.1%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #5 (1100) - 7. 00:01.0%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #4 (1000) - 8. 00:00.9%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #3 (900) - 9. 00:00.8%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #2 (800) -10. 00:00.7%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #1 (700) +Detected 11 tests where the duration exceeded the maximum duration (00:00.500). + + 1. 00:01.6%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #10 (1600) + 2. 00:01.5%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #9 (1500) + 3. 00:01.4%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #8 (1400) + 4. 00:01.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #7 (1300) + 5. 00:01.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #6 (1200) + 6. 00:01.1%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #5 (1100) + 7. 00:01.0%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #4 (1000) + 8. 00:00.9%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #3 (900) + 9. 00:00.8%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #2 (800) +10. 00:00.7%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #1 (700) There is 1 additional slow test that is not listed here. diff --git a/test/EndToEnd/Version10/Configuration/MaximumCount/test.phpt b/test/EndToEnd/Version10/Configuration/MaximumCount/test.phpt index 1e16fc56..451328e1 100644 --- a/test/EndToEnd/Version10/Configuration/MaximumCount/test.phpt +++ b/test/EndToEnd/Version10/Configuration/MaximumCount/test.phpt @@ -22,11 +22,11 @@ Configuration: %s/EndToEnd/Version10/Configuration/MaximumCount/phpunit.xml ...... 6 / 6 (100%) -Detected 5 tests where the duration exceeded the maximum duration. +Detected 5 tests where the duration exceeded the maximum duration (00:00.500). -1. 00:01.0%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\Configuration\MaximumCount\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #4 (1000) -2. 00:00.9%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\Configuration\MaximumCount\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #3 (900) -3. 00:00.8%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\Configuration\MaximumCount\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #2 (800) +1. 00:01.0%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\Configuration\MaximumCount\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #4 (1000) +2. 00:00.9%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\Configuration\MaximumCount\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #3 (900) +3. 00:00.8%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\Configuration\MaximumCount\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #2 (800) There are 2 additional slow tests that are not listed here. diff --git a/test/EndToEnd/Version10/Configuration/MaximumDuration/test.phpt b/test/EndToEnd/Version10/Configuration/MaximumDuration/test.phpt index ba8eb7c1..c482417e 100644 --- a/test/EndToEnd/Version10/Configuration/MaximumDuration/test.phpt +++ b/test/EndToEnd/Version10/Configuration/MaximumDuration/test.phpt @@ -22,18 +22,18 @@ Configuration: %s/EndToEnd/Version10/Configuration/MaximumDuration/phpunit.xml ............ 12 / 12 (100%) -Detected 11 tests where the duration exceeded the maximum duration. - - 1. 00:01.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #10 (1200) - 2. 00:01.1%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #9 (1100) - 3. 00:01.0%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #8 (1000) - 4. 00:00.9%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #7 (900) - 5. 00:00.8%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #6 (800) - 6. 00:00.7%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #5 (700) - 7. 00:00.6%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #4 (600) - 8. 00:00.5%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #3 (500) - 9. 00:00.4%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #2 (400) -10. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +Detected 11 tests where the duration exceeded the maximum duration (00:00.100). + + 1. 00:01.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #10 (1200) + 2. 00:01.1%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #9 (1100) + 3. 00:01.0%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #8 (1000) + 4. 00:00.9%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #7 (900) + 5. 00:00.8%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #6 (800) + 6. 00:00.7%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #5 (700) + 7. 00:00.6%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #4 (600) + 8. 00:00.5%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #3 (500) + 9. 00:00.4%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #2 (400) +10. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) There is 1 additional slow test that is not listed here. diff --git a/test/EndToEnd/Version10/TestCase/Bare/test.phpt b/test/EndToEnd/Version10/TestCase/Bare/test.phpt index 67a24e3b..4f558bfd 100644 --- a/test/EndToEnd/Version10/TestCase/Bare/test.phpt +++ b/test/EndToEnd/Version10/TestCase/Bare/test.phpt @@ -22,10 +22,10 @@ Configuration: %s/EndToEnd/Version10/TestCase/Bare/phpunit.xml ... 3 / 3 (100%) -Detected 2 tests where the duration exceeded the maximum duration. +Detected 2 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\Bare\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\Bare\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +1. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\Bare\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\Bare\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) Time: %s, Memory: %s diff --git a/test/EndToEnd/Version10/TestCase/Combination/test.phpt b/test/EndToEnd/Version10/TestCase/Combination/test.phpt index 492e3bd6..4d68e625 100644 --- a/test/EndToEnd/Version10/TestCase/Combination/test.phpt +++ b/test/EndToEnd/Version10/TestCase/Combination/test.phpt @@ -22,11 +22,11 @@ Configuration: %s/EndToEnd/Version10/TestCase/Combination/phpunit.xml ... 3 / 3 (100%) -Detected 3 tests where the duration exceeded the maximum duration. +Detected 3 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:01.1%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\Combination\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:01.0%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\Combination\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) -3. 00:00.8%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\Combination\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration +1. 00:01.1%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\Combination\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:01.0%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\Combination\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +3. 00:00.8%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\Combination\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration Time: %s, Memory: %s diff --git a/test/EndToEnd/Version10/TestCase/WithAfterAnnotation/test.phpt b/test/EndToEnd/Version10/TestCase/WithAfterAnnotation/test.phpt index 08f2c51c..1a0ca91d 100644 --- a/test/EndToEnd/Version10/TestCase/WithAfterAnnotation/test.phpt +++ b/test/EndToEnd/Version10/TestCase/WithAfterAnnotation/test.phpt @@ -22,11 +22,11 @@ Configuration: %s/EndToEnd/Version10/TestCase/WithAfterAnnotation/phpunit.xml ... 3 / 3 (100%) -Detected 3 tests where the duration exceeded the maximum duration. +Detected 3 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.4%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithAfterAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithAfterAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) -3. 00:00.1%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithAfterAnnotation\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration +1. 00:00.4%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithAfterAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithAfterAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +3. 00:00.1%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithAfterAnnotation\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration Time: %s, Memory: %s diff --git a/test/EndToEnd/Version10/TestCase/WithAfterAttribute/test.phpt b/test/EndToEnd/Version10/TestCase/WithAfterAttribute/test.phpt index 349ce806..e4b0c597 100644 --- a/test/EndToEnd/Version10/TestCase/WithAfterAttribute/test.phpt +++ b/test/EndToEnd/Version10/TestCase/WithAfterAttribute/test.phpt @@ -22,11 +22,11 @@ Configuration: %s/EndToEnd/Version10/TestCase/WithAfterAttribute/phpunit.xml ... 3 / 3 (100%) -Detected 3 tests where the duration exceeded the maximum duration. +Detected 3 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.4%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithAfterAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithAfterAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) -3. 00:00.1%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithAfterAttribute\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration +1. 00:00.4%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithAfterAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithAfterAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +3. 00:00.1%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithAfterAttribute\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration Time: %s, Memory: %s diff --git a/test/EndToEnd/Version10/TestCase/WithAfterClassAnnotation/test.phpt b/test/EndToEnd/Version10/TestCase/WithAfterClassAnnotation/test.phpt index 528d812c..be926d97 100644 --- a/test/EndToEnd/Version10/TestCase/WithAfterClassAnnotation/test.phpt +++ b/test/EndToEnd/Version10/TestCase/WithAfterClassAnnotation/test.phpt @@ -22,10 +22,10 @@ Configuration: %s/EndToEnd/Version10/TestCase/WithAfterClassAnnotation/phpunit.x ... 3 / 3 (100%) -Detected 2 tests where the duration exceeded the maximum duration. +Detected 2 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithAfterClassAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithAfterClassAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +1. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithAfterClassAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithAfterClassAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) Time: %s, Memory: %s diff --git a/test/EndToEnd/Version10/TestCase/WithAfterClassAttribute/test.phpt b/test/EndToEnd/Version10/TestCase/WithAfterClassAttribute/test.phpt index 0e2e03f6..b17a4c6e 100644 --- a/test/EndToEnd/Version10/TestCase/WithAfterClassAttribute/test.phpt +++ b/test/EndToEnd/Version10/TestCase/WithAfterClassAttribute/test.phpt @@ -22,10 +22,10 @@ Configuration: %s/EndToEnd/Version10/TestCase/WithAfterClassAttribute/phpunit.xm ... 3 / 3 (100%) -Detected 2 tests where the duration exceeded the maximum duration. +Detected 2 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithAfterClassAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithAfterClassAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +1. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithAfterClassAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithAfterClassAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) Time: %s, Memory: %s diff --git a/test/EndToEnd/Version10/TestCase/WithAssertPostConditions/test.phpt b/test/EndToEnd/Version10/TestCase/WithAssertPostConditions/test.phpt index c1744a5c..599013f1 100644 --- a/test/EndToEnd/Version10/TestCase/WithAssertPostConditions/test.phpt +++ b/test/EndToEnd/Version10/TestCase/WithAssertPostConditions/test.phpt @@ -22,11 +22,11 @@ Configuration: %s/EndToEnd/Version10/TestCase/WithAssertPostConditions/phpunit.x ... 3 / 3 (100%) -Detected 3 tests where the duration exceeded the maximum duration. +Detected 3 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.4%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithAssertPostConditions\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithAssertPostConditions\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) -3. 00:00.1%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithAssertPostConditions\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration +1. 00:00.4%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithAssertPostConditions\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithAssertPostConditions\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +3. 00:00.1%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithAssertPostConditions\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration Time: %s, Memory: %s diff --git a/test/EndToEnd/Version10/TestCase/WithAssertPreConditions/test.phpt b/test/EndToEnd/Version10/TestCase/WithAssertPreConditions/test.phpt index 35de7244..d8a84d83 100644 --- a/test/EndToEnd/Version10/TestCase/WithAssertPreConditions/test.phpt +++ b/test/EndToEnd/Version10/TestCase/WithAssertPreConditions/test.phpt @@ -22,11 +22,11 @@ Configuration: %s/EndToEnd/Version10/TestCase/WithAssertPreConditions/phpunit.xm ... 3 / 3 (100%) -Detected 3 tests where the duration exceeded the maximum duration. +Detected 3 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.4%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithAssertPreConditions\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithAssertPreConditions\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) -3. 00:00.1%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithAssertPreConditions\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration +1. 00:00.4%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithAssertPreConditions\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithAssertPreConditions\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +3. 00:00.1%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithAssertPreConditions\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration Time: %s, Memory: %s diff --git a/test/EndToEnd/Version10/TestCase/WithBeforeAnnotation/test.phpt b/test/EndToEnd/Version10/TestCase/WithBeforeAnnotation/test.phpt index 09845d32..51b0fe7e 100644 --- a/test/EndToEnd/Version10/TestCase/WithBeforeAnnotation/test.phpt +++ b/test/EndToEnd/Version10/TestCase/WithBeforeAnnotation/test.phpt @@ -22,11 +22,11 @@ Configuration: %s/EndToEnd/Version10/TestCase/WithBeforeAnnotation/phpunit.xml ... 3 / 3 (100%) -Detected 3 tests where the duration exceeded the maximum duration. +Detected 3 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.4%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithBeforeAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithBeforeAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) -3. 00:00.1%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithBeforeAnnotation\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration +1. 00:00.4%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithBeforeAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithBeforeAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +3. 00:00.1%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithBeforeAnnotation\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration Time: %s, Memory: %s diff --git a/test/EndToEnd/Version10/TestCase/WithBeforeAttribute/test.phpt b/test/EndToEnd/Version10/TestCase/WithBeforeAttribute/test.phpt index f5363101..46feefe2 100644 --- a/test/EndToEnd/Version10/TestCase/WithBeforeAttribute/test.phpt +++ b/test/EndToEnd/Version10/TestCase/WithBeforeAttribute/test.phpt @@ -22,11 +22,11 @@ Configuration: %s/EndToEnd/Version10/TestCase/WithBeforeAttribute/phpunit.xml ... 3 / 3 (100%) -Detected 3 tests where the duration exceeded the maximum duration. +Detected 3 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.4%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithBeforeAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithBeforeAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) -3. 00:00.1%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithBeforeAttribute\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration +1. 00:00.4%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithBeforeAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithBeforeAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +3. 00:00.1%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithBeforeAttribute\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration Time: %s, Memory: %s diff --git a/test/EndToEnd/Version10/TestCase/WithBeforeClassAnnotation/test.phpt b/test/EndToEnd/Version10/TestCase/WithBeforeClassAnnotation/test.phpt index 2cc115cf..66f296e7 100644 --- a/test/EndToEnd/Version10/TestCase/WithBeforeClassAnnotation/test.phpt +++ b/test/EndToEnd/Version10/TestCase/WithBeforeClassAnnotation/test.phpt @@ -22,10 +22,10 @@ Configuration: %s/EndToEnd/Version10/TestCase/WithBeforeClassAnnotation/phpunit. ... 3 / 3 (100%) -Detected 2 tests where the duration exceeded the maximum duration. +Detected 2 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithBeforeClassAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithBeforeClassAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +1. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithBeforeClassAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithBeforeClassAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) Time: %s, Memory: %s diff --git a/test/EndToEnd/Version10/TestCase/WithBeforeClassAttribute/test.phpt b/test/EndToEnd/Version10/TestCase/WithBeforeClassAttribute/test.phpt index c497941d..4fca4414 100644 --- a/test/EndToEnd/Version10/TestCase/WithBeforeClassAttribute/test.phpt +++ b/test/EndToEnd/Version10/TestCase/WithBeforeClassAttribute/test.phpt @@ -22,10 +22,10 @@ Configuration: %s/EndToEnd/Version10/TestCase/WithBeforeClassAttribute/phpunit.x ... 3 / 3 (100%) -Detected 2 tests where the duration exceeded the maximum duration. +Detected 2 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithBeforeClassAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithBeforeClassAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +1. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithBeforeClassAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithBeforeClassAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) Time: %s, Memory: %s diff --git a/test/EndToEnd/Version10/TestCase/WithDataProvider/test.phpt b/test/EndToEnd/Version10/TestCase/WithDataProvider/test.phpt index 2f3150f3..8c8315df 100644 --- a/test/EndToEnd/Version10/TestCase/WithDataProvider/test.phpt +++ b/test/EndToEnd/Version10/TestCase/WithDataProvider/test.phpt @@ -22,10 +22,10 @@ Configuration: %s/EndToEnd/Version10/TestCase/WithDataProvider/phpunit.xml ... 3 / 3 (100%) -Detected 2 tests where the duration exceeded the maximum duration. +Detected 2 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithDataProvider\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithDataProvider\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +1. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithDataProvider\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithDataProvider\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) Time: %s, Memory: %s diff --git a/test/EndToEnd/Version10/TestCase/WithSetUp/test.phpt b/test/EndToEnd/Version10/TestCase/WithSetUp/test.phpt index 4e4e443e..cc8d1701 100644 --- a/test/EndToEnd/Version10/TestCase/WithSetUp/test.phpt +++ b/test/EndToEnd/Version10/TestCase/WithSetUp/test.phpt @@ -22,11 +22,11 @@ Configuration: %s/EndToEnd/Version10/TestCase/WithSetUp/phpunit.xml ... 3 / 3 (100%) -Detected 3 tests where the duration exceeded the maximum duration. +Detected 3 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.4%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithSetUp\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithSetUp\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) -3. 00:00.1%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithSetUp\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration +1. 00:00.4%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithSetUp\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithSetUp\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +3. 00:00.1%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithSetUp\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration Time: %s, Memory: %s diff --git a/test/EndToEnd/Version10/TestCase/WithSetUpBeforeClass/test.phpt b/test/EndToEnd/Version10/TestCase/WithSetUpBeforeClass/test.phpt index 99c0f6fb..78d0624f 100644 --- a/test/EndToEnd/Version10/TestCase/WithSetUpBeforeClass/test.phpt +++ b/test/EndToEnd/Version10/TestCase/WithSetUpBeforeClass/test.phpt @@ -22,10 +22,10 @@ Configuration: %s/EndToEnd/Version10/TestCase/WithSetUpBeforeClass/phpunit.xml ... 3 / 3 (100%) -Detected 2 tests where the duration exceeded the maximum duration. +Detected 2 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithSetUpBeforeClass\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithSetUpBeforeClass\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +1. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithSetUpBeforeClass\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithSetUpBeforeClass\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) Time: %s, Memory: %s diff --git a/test/EndToEnd/Version10/TestCase/WithTearDown/test.phpt b/test/EndToEnd/Version10/TestCase/WithTearDown/test.phpt index 23bbc439..51e391d8 100644 --- a/test/EndToEnd/Version10/TestCase/WithTearDown/test.phpt +++ b/test/EndToEnd/Version10/TestCase/WithTearDown/test.phpt @@ -22,11 +22,11 @@ Configuration: %s/EndToEnd/Version10/TestCase/WithTearDown/phpunit.xml ... 3 / 3 (100%) -Detected 3 tests where the duration exceeded the maximum duration. +Detected 3 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.4%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithTearDown\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithTearDown\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) -3. 00:00.1%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithTearDown\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration +1. 00:00.4%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithTearDown\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithTearDown\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +3. 00:00.1%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithTearDown\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration Time: %s, Memory: %s diff --git a/test/EndToEnd/Version10/TestCase/WithTearDownAfterClass/test.phpt b/test/EndToEnd/Version10/TestCase/WithTearDownAfterClass/test.phpt index 3524722d..ddb65641 100644 --- a/test/EndToEnd/Version10/TestCase/WithTearDownAfterClass/test.phpt +++ b/test/EndToEnd/Version10/TestCase/WithTearDownAfterClass/test.phpt @@ -22,10 +22,10 @@ Configuration: %s/EndToEnd/Version10/TestCase/WithTearDownAfterClass/phpunit.xml ... 3 / 3 (100%) -Detected 2 tests where the duration exceeded the maximum duration. +Detected 2 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithTearDownAfterClass\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithTearDownAfterClass\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +1. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithTearDownAfterClass\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestCase\WithTearDownAfterClass\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) Time: %s, Memory: %s diff --git a/test/EndToEnd/Version10/TestMethod/WithMaximumDurationAndSlowThresholdAnnotations/test.phpt b/test/EndToEnd/Version10/TestMethod/WithMaximumDurationAndSlowThresholdAnnotations/test.phpt index 68460d0b..5bb0ca4a 100644 --- a/test/EndToEnd/Version10/TestMethod/WithMaximumDurationAndSlowThresholdAnnotations/test.phpt +++ b/test/EndToEnd/Version10/TestMethod/WithMaximumDurationAndSlowThresholdAnnotations/test.phpt @@ -22,7 +22,7 @@ Configuration: %s/EndToEnd/Version10/TestMethod/WithMaximumDurationAndSlowThresh .. 2 / 2 (100%) -Detected 1 test where the duration exceeded the maximum duration. +Detected 1 test where the duration exceeded the maximum duration (00:00.100). 1. 00:00.3%s (00:00.200) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestMethod\WithMaximumDurationAndSlowThresholdAnnotations\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromAnnotationWhenTestMethodHasMaximumDurationAndSlowThresholdAnnotations diff --git a/test/EndToEnd/Version10/TestMethod/WithMaximumDurationAnnotation/test.phpt b/test/EndToEnd/Version10/TestMethod/WithMaximumDurationAnnotation/test.phpt index d96ba0c7..4e9f8a28 100644 --- a/test/EndToEnd/Version10/TestMethod/WithMaximumDurationAnnotation/test.phpt +++ b/test/EndToEnd/Version10/TestMethod/WithMaximumDurationAnnotation/test.phpt @@ -22,10 +22,10 @@ Configuration: %s/EndToEnd/Version10/TestMethod/WithMaximumDurationAnnotation/ph .... 4 / 4 (100%) -Detected 2 tests where the duration exceeded the maximum duration. +Detected 2 tests where the duration exceeded the maximum duration (00:00.100). 1. 00:00.3%s (00:00.200) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestMethod\WithMaximumDurationAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromAnnotationWhenTestMethodHasValidMaximumDurationAnnotation -2. 00:00.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestMethod\WithMaximumDurationAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWhenTestMethodHasInvalidMaximumDurationAnnotation +2. 00:00.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestMethod\WithMaximumDurationAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWhenTestMethodHasInvalidMaximumDurationAnnotation Time: %s, Memory: %s diff --git a/test/EndToEnd/Version10/TestMethod/WithMaximumDurationAttribute/test.phpt b/test/EndToEnd/Version10/TestMethod/WithMaximumDurationAttribute/test.phpt index 8ec31490..a3579916 100644 --- a/test/EndToEnd/Version10/TestMethod/WithMaximumDurationAttribute/test.phpt +++ b/test/EndToEnd/Version10/TestMethod/WithMaximumDurationAttribute/test.phpt @@ -22,7 +22,7 @@ Configuration: %s/EndToEnd/Version10/TestMethod/WithMaximumDurationAttribute/php .. 2 / 2 (100%) -Detected 1 test where the duration exceeded the maximum duration. +Detected 1 test where the duration exceeded the maximum duration (00:00.100). 1. 00:00.3%s (00:00.200) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestMethod\WithMaximumDurationAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromAttributeWhenTestMethodHasValidMaximumDurationAttribute diff --git a/test/EndToEnd/Version10/TestMethod/WithRunInSeparateProcessAnnotation/test.phpt b/test/EndToEnd/Version10/TestMethod/WithRunInSeparateProcessAnnotation/test.phpt index 426c8e42..bdcecc09 100644 --- a/test/EndToEnd/Version10/TestMethod/WithRunInSeparateProcessAnnotation/test.phpt +++ b/test/EndToEnd/Version10/TestMethod/WithRunInSeparateProcessAnnotation/test.phpt @@ -27,12 +27,12 @@ Configuration: %s/EndToEnd/Version10/TestMethod/WithRunInSeparateProcessAnnotati .... 4 / 4 (100%) -Detected 4 tests where the duration exceeded the maximum duration. +Detected 4 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:01.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestMethod\WithRunInSeparateProcessAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWhenMethodHasRunInSeparateProcessAnnotation -2. 00:01.0%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestMethod\WithRunInSeparateProcessAnnotation\SleeperTest::testSleeperSleepsShorterThanMaximumDurationFromXmlConfigurationWhenMethodHasRunInSeparateProcessAnnotation -3. 00:01.0%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestMethod\WithRunInSeparateProcessAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfiguration -4. 00:00.8%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestMethod\WithRunInSeparateProcessAnnotation\SleeperTest::testSleeperSleepsShorterThanMaximumDurationFromXmlConfiguration +1. 00:01.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestMethod\WithRunInSeparateProcessAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWhenMethodHasRunInSeparateProcessAnnotation +2. 00:01.0%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestMethod\WithRunInSeparateProcessAnnotation\SleeperTest::testSleeperSleepsShorterThanMaximumDurationFromXmlConfigurationWhenMethodHasRunInSeparateProcessAnnotation +3. 00:01.0%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestMethod\WithRunInSeparateProcessAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfiguration +4. 00:00.8%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestMethod\WithRunInSeparateProcessAnnotation\SleeperTest::testSleeperSleepsShorterThanMaximumDurationFromXmlConfiguration Time: %s, Memory: %s diff --git a/test/EndToEnd/Version10/TestMethod/WithRunInSeparateProcessAttribute/test.phpt b/test/EndToEnd/Version10/TestMethod/WithRunInSeparateProcessAttribute/test.phpt index a47e72b7..374b4c2b 100644 --- a/test/EndToEnd/Version10/TestMethod/WithRunInSeparateProcessAttribute/test.phpt +++ b/test/EndToEnd/Version10/TestMethod/WithRunInSeparateProcessAttribute/test.phpt @@ -27,12 +27,12 @@ Configuration: %s/EndToEnd/Version10/TestMethod/WithRunInSeparateProcessAttribut .... 4 / 4 (100%) -Detected 4 tests where the duration exceeded the maximum duration. +Detected 4 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:01.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestMethod\WithRunInSeparateProcessAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWhenMethodHasRunInSeparateProcessAttribute -2. 00:01.0%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestMethod\WithRunInSeparateProcessAttribute\SleeperTest::testSleeperSleepsShorterThanMaximumDurationFromXmlConfigurationWhenMethodHasRunInSeparateProcessAttribute -3. 00:01.0%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestMethod\WithRunInSeparateProcessAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfiguration -4. 00:00.8%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestMethod\WithRunInSeparateProcessAttribute\SleeperTest::testSleeperSleepsShorterThanMaximumDurationFromXmlConfiguration +1. 00:01.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestMethod\WithRunInSeparateProcessAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWhenMethodHasRunInSeparateProcessAttribute +2. 00:01.0%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestMethod\WithRunInSeparateProcessAttribute\SleeperTest::testSleeperSleepsShorterThanMaximumDurationFromXmlConfigurationWhenMethodHasRunInSeparateProcessAttribute +3. 00:01.0%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestMethod\WithRunInSeparateProcessAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfiguration +4. 00:00.8%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestMethod\WithRunInSeparateProcessAttribute\SleeperTest::testSleeperSleepsShorterThanMaximumDurationFromXmlConfiguration Time: %s, Memory: %s diff --git a/test/EndToEnd/Version10/TestMethod/WithSlowThresholdAndMaximumDurationAnnotations/test.phpt b/test/EndToEnd/Version10/TestMethod/WithSlowThresholdAndMaximumDurationAnnotations/test.phpt index 6c8f5ce4..0a3f188f 100644 --- a/test/EndToEnd/Version10/TestMethod/WithSlowThresholdAndMaximumDurationAnnotations/test.phpt +++ b/test/EndToEnd/Version10/TestMethod/WithSlowThresholdAndMaximumDurationAnnotations/test.phpt @@ -22,7 +22,7 @@ Configuration: %s/EndToEnd/Version10/TestMethod/WithSlowThresholdAndMaximumDurat .. 2 / 2 (100%) -Detected 1 test where the duration exceeded the maximum duration. +Detected 1 test where the duration exceeded the maximum duration (00:00.100). 1. 00:00.3%s (00:00.200) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestMethod\WithSlowThresholdAndMaximumDurationAnnotations\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromAnnotationWhenTestMethodHasMaximumDurationAndSlowThresholdAnnotations diff --git a/test/EndToEnd/Version10/TestMethod/WithSlowThresholdAnnotation/test.phpt b/test/EndToEnd/Version10/TestMethod/WithSlowThresholdAnnotation/test.phpt index 7a21dd18..f7488219 100644 --- a/test/EndToEnd/Version10/TestMethod/WithSlowThresholdAnnotation/test.phpt +++ b/test/EndToEnd/Version10/TestMethod/WithSlowThresholdAnnotation/test.phpt @@ -22,10 +22,10 @@ Configuration: %s/EndToEnd/Version10/TestMethod/WithSlowThresholdAnnotation/phpu .... 4 / 4 (100%) -Detected 2 tests where the duration exceeded the maximum duration. +Detected 2 tests where the duration exceeded the maximum duration (00:00.100). 1. 00:00.3%s (00:00.200) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestMethod\WithSlowThresholdAnnotation\SleeperTest::testSleeperSleepsLongerThanSlowThresholdFromAnnotationWhenTestMethodHasValidSlowThresholdAnnotation -2. 00:00.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestMethod\WithSlowThresholdAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWhenTestMethodHasInvalidSlowThresholdAnnotation +2. 00:00.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version10\TestMethod\WithSlowThresholdAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWhenTestMethodHasInvalidSlowThresholdAnnotation Time: %s, Memory: %s diff --git a/test/EndToEnd/Version11/Configuration/Defaults/test.phpt b/test/EndToEnd/Version11/Configuration/Defaults/test.phpt index b162691c..44b5ea1e 100644 --- a/test/EndToEnd/Version11/Configuration/Defaults/test.phpt +++ b/test/EndToEnd/Version11/Configuration/Defaults/test.phpt @@ -22,18 +22,18 @@ Configuration: %s/EndToEnd/Version11/Configuration/Defaults/phpunit.xml ............ 12 / 12 (100%) -Detected 11 tests where the duration exceeded the maximum duration. - - 1. 00:01.6%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #10 (1600) - 2. 00:01.5%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #9 (1500) - 3. 00:01.4%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #8 (1400) - 4. 00:01.3%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #7 (1300) - 5. 00:01.2%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #6 (1200) - 6. 00:01.1%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #5 (1100) - 7. 00:01.0%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #4 (1000) - 8. 00:00.9%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #3 (900) - 9. 00:00.8%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #2 (800) -10. 00:00.7%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #1 (700) +Detected 11 tests where the duration exceeded the maximum duration (00:00.500). + + 1. 00:01.6%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #10 (1600) + 2. 00:01.5%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #9 (1500) + 3. 00:01.4%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #8 (1400) + 4. 00:01.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #7 (1300) + 5. 00:01.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #6 (1200) + 6. 00:01.1%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #5 (1100) + 7. 00:01.0%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #4 (1000) + 8. 00:00.9%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #3 (900) + 9. 00:00.8%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #2 (800) +10. 00:00.7%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #1 (700) There is 1 additional slow test that is not listed here. diff --git a/test/EndToEnd/Version11/Configuration/MaximumCount/test.phpt b/test/EndToEnd/Version11/Configuration/MaximumCount/test.phpt index a88da05c..500e5757 100644 --- a/test/EndToEnd/Version11/Configuration/MaximumCount/test.phpt +++ b/test/EndToEnd/Version11/Configuration/MaximumCount/test.phpt @@ -22,11 +22,11 @@ Configuration: %s/EndToEnd/Version11/Configuration/MaximumCount/phpunit.xml ...... 6 / 6 (100%) -Detected 5 tests where the duration exceeded the maximum duration. +Detected 5 tests where the duration exceeded the maximum duration (00:00.500). -1. 00:01.0%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\Configuration\MaximumCount\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #4 (1000) -2. 00:00.9%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\Configuration\MaximumCount\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #3 (900) -3. 00:00.8%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\Configuration\MaximumCount\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #2 (800) +1. 00:01.0%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\Configuration\MaximumCount\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #4 (1000) +2. 00:00.9%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\Configuration\MaximumCount\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #3 (900) +3. 00:00.8%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\Configuration\MaximumCount\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #2 (800) There are 2 additional slow tests that are not listed here. diff --git a/test/EndToEnd/Version11/Configuration/MaximumDuration/test.phpt b/test/EndToEnd/Version11/Configuration/MaximumDuration/test.phpt index 852805e0..bd1e6b3e 100644 --- a/test/EndToEnd/Version11/Configuration/MaximumDuration/test.phpt +++ b/test/EndToEnd/Version11/Configuration/MaximumDuration/test.phpt @@ -22,18 +22,18 @@ Configuration: %s/EndToEnd/Version11/Configuration/MaximumDuration/phpunit.xml ............ 12 / 12 (100%) -Detected 11 tests where the duration exceeded the maximum duration. - - 1. 00:01.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #10 (1200) - 2. 00:01.1%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #9 (1100) - 3. 00:01.0%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #8 (1000) - 4. 00:00.9%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #7 (900) - 5. 00:00.8%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #6 (800) - 6. 00:00.7%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #5 (700) - 7. 00:00.6%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #4 (600) - 8. 00:00.5%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #3 (500) - 9. 00:00.4%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #2 (400) -10. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +Detected 11 tests where the duration exceeded the maximum duration (00:00.100). + + 1. 00:01.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #10 (1200) + 2. 00:01.1%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #9 (1100) + 3. 00:01.0%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #8 (1000) + 4. 00:00.9%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #7 (900) + 5. 00:00.8%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #6 (800) + 6. 00:00.7%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #5 (700) + 7. 00:00.6%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #4 (600) + 8. 00:00.5%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #3 (500) + 9. 00:00.4%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #2 (400) +10. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) There is 1 additional slow test that is not listed here. diff --git a/test/EndToEnd/Version11/TestCase/Bare/test.phpt b/test/EndToEnd/Version11/TestCase/Bare/test.phpt index 0f83ab5a..04fe5e01 100644 --- a/test/EndToEnd/Version11/TestCase/Bare/test.phpt +++ b/test/EndToEnd/Version11/TestCase/Bare/test.phpt @@ -22,10 +22,10 @@ Configuration: %s/EndToEnd/Version11/TestCase/Bare/phpunit.xml ... 3 / 3 (100%) -Detected 2 tests where the duration exceeded the maximum duration. +Detected 2 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\Bare\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\Bare\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +1. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\Bare\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\Bare\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) Time: %s, Memory: %s diff --git a/test/EndToEnd/Version11/TestCase/Combination/test.phpt b/test/EndToEnd/Version11/TestCase/Combination/test.phpt index 41526b0b..0393a128 100644 --- a/test/EndToEnd/Version11/TestCase/Combination/test.phpt +++ b/test/EndToEnd/Version11/TestCase/Combination/test.phpt @@ -22,11 +22,11 @@ Configuration: %s/EndToEnd/Version11/TestCase/Combination/phpunit.xml ... 3 / 3 (100%) -Detected 3 tests where the duration exceeded the maximum duration. +Detected 3 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.9%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\Combination\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.8%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\Combination\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) -3. 00:00.6%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\Combination\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration +1. 00:00.9%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\Combination\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.8%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\Combination\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +3. 00:00.6%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\Combination\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration Time: %s, Memory: %s diff --git a/test/EndToEnd/Version11/TestCase/WithAfterAttribute/test.phpt b/test/EndToEnd/Version11/TestCase/WithAfterAttribute/test.phpt index 264a5771..b6e723ea 100644 --- a/test/EndToEnd/Version11/TestCase/WithAfterAttribute/test.phpt +++ b/test/EndToEnd/Version11/TestCase/WithAfterAttribute/test.phpt @@ -22,11 +22,11 @@ Configuration: %s/EndToEnd/Version11/TestCase/WithAfterAttribute/phpunit.xml ... 3 / 3 (100%) -Detected 3 tests where the duration exceeded the maximum duration. +Detected 3 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.4%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\WithAfterAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\WithAfterAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) -3. 00:00.1%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\WithAfterAttribute\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration +1. 00:00.4%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\WithAfterAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\WithAfterAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +3. 00:00.1%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\WithAfterAttribute\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration Time: %s, Memory: %s diff --git a/test/EndToEnd/Version11/TestCase/WithAfterClassAttribute/test.phpt b/test/EndToEnd/Version11/TestCase/WithAfterClassAttribute/test.phpt index 33373243..b1222d53 100644 --- a/test/EndToEnd/Version11/TestCase/WithAfterClassAttribute/test.phpt +++ b/test/EndToEnd/Version11/TestCase/WithAfterClassAttribute/test.phpt @@ -22,10 +22,10 @@ Configuration: %s/EndToEnd/Version11/TestCase/WithAfterClassAttribute/phpunit.xm ... 3 / 3 (100%) -Detected 2 tests where the duration exceeded the maximum duration. +Detected 2 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\WithAfterClassAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\WithAfterClassAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +1. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\WithAfterClassAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\WithAfterClassAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) Time: %s, Memory: %s diff --git a/test/EndToEnd/Version11/TestCase/WithAssertPostConditions/test.phpt b/test/EndToEnd/Version11/TestCase/WithAssertPostConditions/test.phpt index 61152766..66975da1 100644 --- a/test/EndToEnd/Version11/TestCase/WithAssertPostConditions/test.phpt +++ b/test/EndToEnd/Version11/TestCase/WithAssertPostConditions/test.phpt @@ -22,11 +22,11 @@ Configuration: %s/EndToEnd/Version11/TestCase/WithAssertPostConditions/phpunit.x ... 3 / 3 (100%) -Detected 3 tests where the duration exceeded the maximum duration. +Detected 3 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.4%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\WithAssertPostConditions\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\WithAssertPostConditions\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) -3. 00:00.1%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\WithAssertPostConditions\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration +1. 00:00.4%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\WithAssertPostConditions\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\WithAssertPostConditions\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +3. 00:00.1%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\WithAssertPostConditions\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration Time: %s, Memory: %s diff --git a/test/EndToEnd/Version11/TestCase/WithAssertPreConditions/test.phpt b/test/EndToEnd/Version11/TestCase/WithAssertPreConditions/test.phpt index be9a3aee..75260eb4 100644 --- a/test/EndToEnd/Version11/TestCase/WithAssertPreConditions/test.phpt +++ b/test/EndToEnd/Version11/TestCase/WithAssertPreConditions/test.phpt @@ -22,11 +22,11 @@ Configuration: %s/EndToEnd/Version11/TestCase/WithAssertPreConditions/phpunit.xm ... 3 / 3 (100%) -Detected 3 tests where the duration exceeded the maximum duration. +Detected 3 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.4%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\WithAssertPreConditions\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\WithAssertPreConditions\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) -3. 00:00.1%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\WithAssertPreConditions\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration +1. 00:00.4%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\WithAssertPreConditions\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\WithAssertPreConditions\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +3. 00:00.1%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\WithAssertPreConditions\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration Time: %s, Memory: %s diff --git a/test/EndToEnd/Version11/TestCase/WithBeforeAttribute/test.phpt b/test/EndToEnd/Version11/TestCase/WithBeforeAttribute/test.phpt index 0caa93f5..6649067d 100644 --- a/test/EndToEnd/Version11/TestCase/WithBeforeAttribute/test.phpt +++ b/test/EndToEnd/Version11/TestCase/WithBeforeAttribute/test.phpt @@ -22,11 +22,11 @@ Configuration: %s/EndToEnd/Version11/TestCase/WithBeforeAttribute/phpunit.xml ... 3 / 3 (100%) -Detected 3 tests where the duration exceeded the maximum duration. +Detected 3 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.4%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\WithBeforeAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\WithBeforeAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) -3. 00:00.1%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\WithBeforeAttribute\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration +1. 00:00.4%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\WithBeforeAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\WithBeforeAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +3. 00:00.1%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\WithBeforeAttribute\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration Time: %s, Memory: %s diff --git a/test/EndToEnd/Version11/TestCase/WithBeforeClassAttribute/test.phpt b/test/EndToEnd/Version11/TestCase/WithBeforeClassAttribute/test.phpt index 9fa689b1..5b36e638 100644 --- a/test/EndToEnd/Version11/TestCase/WithBeforeClassAttribute/test.phpt +++ b/test/EndToEnd/Version11/TestCase/WithBeforeClassAttribute/test.phpt @@ -22,10 +22,10 @@ Configuration: %s/EndToEnd/Version11/TestCase/WithBeforeClassAttribute/phpunit.x ... 3 / 3 (100%) -Detected 2 tests where the duration exceeded the maximum duration. +Detected 2 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\WithBeforeClassAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\WithBeforeClassAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +1. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\WithBeforeClassAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\WithBeforeClassAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) Time: %s, Memory: %s diff --git a/test/EndToEnd/Version11/TestCase/WithDataProvider/test.phpt b/test/EndToEnd/Version11/TestCase/WithDataProvider/test.phpt index 8aaf6f0a..5fa03040 100644 --- a/test/EndToEnd/Version11/TestCase/WithDataProvider/test.phpt +++ b/test/EndToEnd/Version11/TestCase/WithDataProvider/test.phpt @@ -22,10 +22,10 @@ Configuration: %s/EndToEnd/Version11/TestCase/WithDataProvider/phpunit.xml ... 3 / 3 (100%) -Detected 2 tests where the duration exceeded the maximum duration. +Detected 2 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\WithDataProvider\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\WithDataProvider\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +1. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\WithDataProvider\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\WithDataProvider\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) Time: %s, Memory: %s diff --git a/test/EndToEnd/Version11/TestCase/WithSetUp/test.phpt b/test/EndToEnd/Version11/TestCase/WithSetUp/test.phpt index 47d25a82..e804dd2e 100644 --- a/test/EndToEnd/Version11/TestCase/WithSetUp/test.phpt +++ b/test/EndToEnd/Version11/TestCase/WithSetUp/test.phpt @@ -22,11 +22,11 @@ Configuration: %s/EndToEnd/Version11/TestCase/WithSetUp/phpunit.xml ... 3 / 3 (100%) -Detected 3 tests where the duration exceeded the maximum duration. +Detected 3 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.4%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\WithSetUp\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\WithSetUp\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) -3. 00:00.1%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\WithSetUp\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration +1. 00:00.4%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\WithSetUp\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\WithSetUp\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +3. 00:00.1%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\WithSetUp\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration Time: %s, Memory: %s diff --git a/test/EndToEnd/Version11/TestCase/WithSetUpBeforeClass/test.phpt b/test/EndToEnd/Version11/TestCase/WithSetUpBeforeClass/test.phpt index b829c7da..a91bafff 100644 --- a/test/EndToEnd/Version11/TestCase/WithSetUpBeforeClass/test.phpt +++ b/test/EndToEnd/Version11/TestCase/WithSetUpBeforeClass/test.phpt @@ -22,10 +22,10 @@ Configuration: %s/EndToEnd/Version11/TestCase/WithSetUpBeforeClass/phpunit.xml ... 3 / 3 (100%) -Detected 2 tests where the duration exceeded the maximum duration. +Detected 2 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\WithSetUpBeforeClass\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\WithSetUpBeforeClass\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +1. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\WithSetUpBeforeClass\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\WithSetUpBeforeClass\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) Time: %s, Memory: %s diff --git a/test/EndToEnd/Version11/TestCase/WithTearDown/test.phpt b/test/EndToEnd/Version11/TestCase/WithTearDown/test.phpt index 727fff15..8b3428eb 100644 --- a/test/EndToEnd/Version11/TestCase/WithTearDown/test.phpt +++ b/test/EndToEnd/Version11/TestCase/WithTearDown/test.phpt @@ -22,11 +22,11 @@ Configuration: %s/EndToEnd/Version11/TestCase/WithTearDown/phpunit.xml ... 3 / 3 (100%) -Detected 3 tests where the duration exceeded the maximum duration. +Detected 3 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.4%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\WithTearDown\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\WithTearDown\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) -3. 00:00.1%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\WithTearDown\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration +1. 00:00.4%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\WithTearDown\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\WithTearDown\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +3. 00:00.1%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\WithTearDown\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration Time: %s, Memory: %s diff --git a/test/EndToEnd/Version11/TestCase/WithTearDownAfterClass/test.phpt b/test/EndToEnd/Version11/TestCase/WithTearDownAfterClass/test.phpt index 30a5ed3f..4d932e78 100644 --- a/test/EndToEnd/Version11/TestCase/WithTearDownAfterClass/test.phpt +++ b/test/EndToEnd/Version11/TestCase/WithTearDownAfterClass/test.phpt @@ -22,10 +22,10 @@ Configuration: %s/EndToEnd/Version11/TestCase/WithTearDownAfterClass/phpunit.xml ... 3 / 3 (100%) -Detected 2 tests where the duration exceeded the maximum duration. +Detected 2 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\WithTearDownAfterClass\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\WithTearDownAfterClass\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +1. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\WithTearDownAfterClass\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestCase\WithTearDownAfterClass\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) Time: %s, Memory: %s diff --git a/test/EndToEnd/Version11/TestMethod/WithMaximumDurationAndSlowThresholdAnnotations/test.phpt b/test/EndToEnd/Version11/TestMethod/WithMaximumDurationAndSlowThresholdAnnotations/test.phpt index 82d3b6f9..01fea5bd 100644 --- a/test/EndToEnd/Version11/TestMethod/WithMaximumDurationAndSlowThresholdAnnotations/test.phpt +++ b/test/EndToEnd/Version11/TestMethod/WithMaximumDurationAndSlowThresholdAnnotations/test.phpt @@ -22,7 +22,7 @@ Configuration: %s/EndToEnd/Version11/TestMethod/WithMaximumDurationAndSlowThresh .. 2 / 2 (100%) -Detected 1 test where the duration exceeded the maximum duration. +Detected 1 test where the duration exceeded the maximum duration (00:00.100). 1. 00:00.3%s (00:00.200) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestMethod\WithMaximumDurationAndSlowThresholdAnnotations\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromAnnotationWhenTestMethodHasMaximumDurationAndSlowThresholdAnnotations diff --git a/test/EndToEnd/Version11/TestMethod/WithMaximumDurationAnnotation/test.phpt b/test/EndToEnd/Version11/TestMethod/WithMaximumDurationAnnotation/test.phpt index 1a58f19b..99364d88 100644 --- a/test/EndToEnd/Version11/TestMethod/WithMaximumDurationAnnotation/test.phpt +++ b/test/EndToEnd/Version11/TestMethod/WithMaximumDurationAnnotation/test.phpt @@ -22,10 +22,10 @@ Configuration: %s/EndToEnd/Version11/TestMethod/WithMaximumDurationAnnotation/ph .... 4 / 4 (100%) -Detected 2 tests where the duration exceeded the maximum duration. +Detected 2 tests where the duration exceeded the maximum duration (00:00.100). 1. 00:00.3%s (00:00.200) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestMethod\WithMaximumDurationAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromAnnotationWhenTestMethodHasValidMaximumDurationAnnotation -2. 00:00.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestMethod\WithMaximumDurationAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWhenTestMethodHasInvalidMaximumDurationAnnotation +2. 00:00.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestMethod\WithMaximumDurationAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWhenTestMethodHasInvalidMaximumDurationAnnotation Time: %s, Memory: %s diff --git a/test/EndToEnd/Version11/TestMethod/WithMaximumDurationAttribute/test.phpt b/test/EndToEnd/Version11/TestMethod/WithMaximumDurationAttribute/test.phpt index 98eab120..4eb80905 100644 --- a/test/EndToEnd/Version11/TestMethod/WithMaximumDurationAttribute/test.phpt +++ b/test/EndToEnd/Version11/TestMethod/WithMaximumDurationAttribute/test.phpt @@ -22,7 +22,7 @@ Configuration: %s/EndToEnd/Version11/TestMethod/WithMaximumDurationAttribute/php .. 2 / 2 (100%) -Detected 1 test where the duration exceeded the maximum duration. +Detected 1 test where the duration exceeded the maximum duration (00:00.100). 1. 00:00.3%s (00:00.200) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestMethod\WithMaximumDurationAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromAttributeWhenTestMethodHasValidMaximumDurationAttribute diff --git a/test/EndToEnd/Version11/TestMethod/WithRunInSeparateProcessAttribute/test.phpt b/test/EndToEnd/Version11/TestMethod/WithRunInSeparateProcessAttribute/test.phpt index 4932be96..9ade4b83 100644 --- a/test/EndToEnd/Version11/TestMethod/WithRunInSeparateProcessAttribute/test.phpt +++ b/test/EndToEnd/Version11/TestMethod/WithRunInSeparateProcessAttribute/test.phpt @@ -27,12 +27,12 @@ Configuration: %s/EndToEnd/Version11/TestMethod/WithRunInSeparateProcessAttribut .... 4 / 4 (100%) -Detected 4 tests where the duration exceeded the maximum duration. +Detected 4 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:01.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestMethod\WithRunInSeparateProcessAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWhenMethodHasRunInSeparateProcessAttribute -2. 00:01.0%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestMethod\WithRunInSeparateProcessAttribute\SleeperTest::testSleeperSleepsShorterThanMaximumDurationFromXmlConfigurationWhenMethodHasRunInSeparateProcessAttribute -3. 00:00.8%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestMethod\WithRunInSeparateProcessAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfiguration -4. 00:00.6%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestMethod\WithRunInSeparateProcessAttribute\SleeperTest::testSleeperSleepsShorterThanMaximumDurationFromXmlConfiguration +1. 00:01.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestMethod\WithRunInSeparateProcessAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWhenMethodHasRunInSeparateProcessAttribute +2. 00:01.0%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestMethod\WithRunInSeparateProcessAttribute\SleeperTest::testSleeperSleepsShorterThanMaximumDurationFromXmlConfigurationWhenMethodHasRunInSeparateProcessAttribute +3. 00:00.8%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestMethod\WithRunInSeparateProcessAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfiguration +4. 00:00.6%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestMethod\WithRunInSeparateProcessAttribute\SleeperTest::testSleeperSleepsShorterThanMaximumDurationFromXmlConfiguration Time: %s, Memory: %s diff --git a/test/EndToEnd/Version11/TestMethod/WithSlowThresholdAndMaximumDurationAnnotations/test.phpt b/test/EndToEnd/Version11/TestMethod/WithSlowThresholdAndMaximumDurationAnnotations/test.phpt index 3f832d3f..e5d1036b 100644 --- a/test/EndToEnd/Version11/TestMethod/WithSlowThresholdAndMaximumDurationAnnotations/test.phpt +++ b/test/EndToEnd/Version11/TestMethod/WithSlowThresholdAndMaximumDurationAnnotations/test.phpt @@ -22,7 +22,7 @@ Configuration: %s/EndToEnd/Version11/TestMethod/WithSlowThresholdAndMaximumDurat .. 2 / 2 (100%) -Detected 1 test where the duration exceeded the maximum duration. +Detected 1 test where the duration exceeded the maximum duration (00:00.100). 1. 00:00.3%s (00:00.200) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestMethod\WithSlowThresholdAndMaximumDurationAnnotations\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromAnnotationWhenTestMethodHasMaximumDurationAndSlowThresholdAnnotations diff --git a/test/EndToEnd/Version11/TestMethod/WithSlowThresholdAnnotation/test.phpt b/test/EndToEnd/Version11/TestMethod/WithSlowThresholdAnnotation/test.phpt index 17959096..eb2aed8a 100644 --- a/test/EndToEnd/Version11/TestMethod/WithSlowThresholdAnnotation/test.phpt +++ b/test/EndToEnd/Version11/TestMethod/WithSlowThresholdAnnotation/test.phpt @@ -22,10 +22,10 @@ Configuration: %s/EndToEnd/Version11/TestMethod/WithSlowThresholdAnnotation/phpu .... 4 / 4 (100%) -Detected 2 tests where the duration exceeded the maximum duration. +Detected 2 tests where the duration exceeded the maximum duration (00:00.100). 1. 00:00.3%s (00:00.200) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestMethod\WithSlowThresholdAnnotation\SleeperTest::testSleeperSleepsLongerThanSlowThresholdFromAnnotationWhenTestMethodHasValidSlowThresholdAnnotation -2. 00:00.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestMethod\WithSlowThresholdAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWhenTestMethodHasInvalidSlowThresholdAnnotation +2. 00:00.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version11\TestMethod\WithSlowThresholdAnnotation\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWhenTestMethodHasInvalidSlowThresholdAnnotation Time: %s, Memory: %s diff --git a/test/EndToEnd/Version12/Configuration/Defaults/test.phpt b/test/EndToEnd/Version12/Configuration/Defaults/test.phpt index 8ec21f74..ffb317f1 100644 --- a/test/EndToEnd/Version12/Configuration/Defaults/test.phpt +++ b/test/EndToEnd/Version12/Configuration/Defaults/test.phpt @@ -22,18 +22,18 @@ Configuration: %s/EndToEnd/Version12/Configuration/Defaults/phpunit.xml ............ 12 / 12 (100%) -Detected 11 tests where the duration exceeded the maximum duration. - - 1. 00:01.6%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #10 (1600) - 2. 00:01.5%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #9 (1500) - 3. 00:01.4%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #8 (1400) - 4. 00:01.3%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #7 (1300) - 5. 00:01.2%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #6 (1200) - 6. 00:01.1%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #5 (1100) - 7. 00:01.0%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #4 (1000) - 8. 00:00.9%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #3 (900) - 9. 00:00.8%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #2 (800) -10. 00:00.7%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #1 (700) +Detected 11 tests where the duration exceeded the maximum duration (00:00.500). + + 1. 00:01.6%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #10 (1600) + 2. 00:01.5%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #9 (1500) + 3. 00:01.4%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #8 (1400) + 4. 00:01.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #7 (1300) + 5. 00:01.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #6 (1200) + 6. 00:01.1%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #5 (1100) + 7. 00:01.0%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #4 (1000) + 8. 00:00.9%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #3 (900) + 9. 00:00.8%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #2 (800) +10. 00:00.7%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\Configuration\Defaults\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #1 (700) There is 1 additional slow test that is not listed here. diff --git a/test/EndToEnd/Version12/Configuration/MaximumCount/test.phpt b/test/EndToEnd/Version12/Configuration/MaximumCount/test.phpt index 11968b98..e4fc6eaf 100644 --- a/test/EndToEnd/Version12/Configuration/MaximumCount/test.phpt +++ b/test/EndToEnd/Version12/Configuration/MaximumCount/test.phpt @@ -22,11 +22,11 @@ Configuration: %s/EndToEnd/Version12/Configuration/MaximumCount/phpunit.xml ...... 6 / 6 (100%) -Detected 5 tests where the duration exceeded the maximum duration. +Detected 5 tests where the duration exceeded the maximum duration (00:00.500). -1. 00:01.0%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\Configuration\MaximumCount\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #4 (1000) -2. 00:00.9%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\Configuration\MaximumCount\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #3 (900) -3. 00:00.8%s (00:00.500) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\Configuration\MaximumCount\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #2 (800) +1. 00:01.0%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\Configuration\MaximumCount\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #4 (1000) +2. 00:00.9%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\Configuration\MaximumCount\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #3 (900) +3. 00:00.8%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\Configuration\MaximumCount\SleeperTest::testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider with data set #2 (800) There are 2 additional slow tests that are not listed here. diff --git a/test/EndToEnd/Version12/Configuration/MaximumDuration/test.phpt b/test/EndToEnd/Version12/Configuration/MaximumDuration/test.phpt index 6b69d5ad..6d449894 100644 --- a/test/EndToEnd/Version12/Configuration/MaximumDuration/test.phpt +++ b/test/EndToEnd/Version12/Configuration/MaximumDuration/test.phpt @@ -22,18 +22,18 @@ Configuration: %s/EndToEnd/Version12/Configuration/MaximumDuration/phpunit.xml ............ 12 / 12 (100%) -Detected 11 tests where the duration exceeded the maximum duration. - - 1. 00:01.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #10 (1200) - 2. 00:01.1%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #9 (1100) - 3. 00:01.0%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #8 (1000) - 4. 00:00.9%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #7 (900) - 5. 00:00.8%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #6 (800) - 6. 00:00.7%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #5 (700) - 7. 00:00.6%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #4 (600) - 8. 00:00.5%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #3 (500) - 9. 00:00.4%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #2 (400) -10. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +Detected 11 tests where the duration exceeded the maximum duration (00:00.100). + + 1. 00:01.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #10 (1200) + 2. 00:01.1%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #9 (1100) + 3. 00:01.0%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #8 (1000) + 4. 00:00.9%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #7 (900) + 5. 00:00.8%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #6 (800) + 6. 00:00.7%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #5 (700) + 7. 00:00.6%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #4 (600) + 8. 00:00.5%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #3 (500) + 9. 00:00.4%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #2 (400) +10. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\Configuration\MaximumDuration\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) There is 1 additional slow test that is not listed here. diff --git a/test/EndToEnd/Version12/TestCase/Bare/test.phpt b/test/EndToEnd/Version12/TestCase/Bare/test.phpt index 14ffb4d3..5d07f832 100644 --- a/test/EndToEnd/Version12/TestCase/Bare/test.phpt +++ b/test/EndToEnd/Version12/TestCase/Bare/test.phpt @@ -22,10 +22,10 @@ Configuration: %s/EndToEnd/Version12/TestCase/Bare/phpunit.xml ... 3 / 3 (100%) -Detected 2 tests where the duration exceeded the maximum duration. +Detected 2 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\Bare\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\Bare\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +1. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\Bare\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\Bare\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) Time: %s, Memory: %s diff --git a/test/EndToEnd/Version12/TestCase/Combination/test.phpt b/test/EndToEnd/Version12/TestCase/Combination/test.phpt index 82deac24..087a1e92 100644 --- a/test/EndToEnd/Version12/TestCase/Combination/test.phpt +++ b/test/EndToEnd/Version12/TestCase/Combination/test.phpt @@ -22,11 +22,11 @@ Configuration: %s/EndToEnd/Version12/TestCase/Combination/phpunit.xml ... 3 / 3 (100%) -Detected 3 tests where the duration exceeded the maximum duration. +Detected 3 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.9%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\Combination\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.8%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\Combination\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) -3. 00:00.6%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\Combination\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration +1. 00:00.9%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\Combination\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.8%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\Combination\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +3. 00:00.6%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\Combination\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration Time: %s, Memory: %s diff --git a/test/EndToEnd/Version12/TestCase/WithAfterAttribute/test.phpt b/test/EndToEnd/Version12/TestCase/WithAfterAttribute/test.phpt index 57a84ec6..a9ac4be8 100644 --- a/test/EndToEnd/Version12/TestCase/WithAfterAttribute/test.phpt +++ b/test/EndToEnd/Version12/TestCase/WithAfterAttribute/test.phpt @@ -22,11 +22,11 @@ Configuration: %s/EndToEnd/Version12/TestCase/WithAfterAttribute/phpunit.xml ... 3 / 3 (100%) -Detected 3 tests where the duration exceeded the maximum duration. +Detected 3 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.4%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\WithAfterAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\WithAfterAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) -3. 00:00.1%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\WithAfterAttribute\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration +1. 00:00.4%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\WithAfterAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\WithAfterAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +3. 00:00.1%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\WithAfterAttribute\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration Time: %s, Memory: %s diff --git a/test/EndToEnd/Version12/TestCase/WithAfterClassAttribute/test.phpt b/test/EndToEnd/Version12/TestCase/WithAfterClassAttribute/test.phpt index 55e701bb..676be7fe 100644 --- a/test/EndToEnd/Version12/TestCase/WithAfterClassAttribute/test.phpt +++ b/test/EndToEnd/Version12/TestCase/WithAfterClassAttribute/test.phpt @@ -22,10 +22,10 @@ Configuration: %s/EndToEnd/Version12/TestCase/WithAfterClassAttribute/phpunit.xm ... 3 / 3 (100%) -Detected 2 tests where the duration exceeded the maximum duration. +Detected 2 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\WithAfterClassAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\WithAfterClassAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +1. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\WithAfterClassAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\WithAfterClassAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) Time: %s, Memory: %s diff --git a/test/EndToEnd/Version12/TestCase/WithAssertPostConditions/test.phpt b/test/EndToEnd/Version12/TestCase/WithAssertPostConditions/test.phpt index d09e41b2..7636158f 100644 --- a/test/EndToEnd/Version12/TestCase/WithAssertPostConditions/test.phpt +++ b/test/EndToEnd/Version12/TestCase/WithAssertPostConditions/test.phpt @@ -22,11 +22,11 @@ Configuration: %s/EndToEnd/Version12/TestCase/WithAssertPostConditions/phpunit.x ... 3 / 3 (100%) -Detected 3 tests where the duration exceeded the maximum duration. +Detected 3 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.4%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\WithAssertPostConditions\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\WithAssertPostConditions\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) -3. 00:00.1%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\WithAssertPostConditions\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration +1. 00:00.4%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\WithAssertPostConditions\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\WithAssertPostConditions\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +3. 00:00.1%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\WithAssertPostConditions\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration Time: %s, Memory: %s diff --git a/test/EndToEnd/Version12/TestCase/WithAssertPreConditions/test.phpt b/test/EndToEnd/Version12/TestCase/WithAssertPreConditions/test.phpt index d5ce7979..4468aea2 100644 --- a/test/EndToEnd/Version12/TestCase/WithAssertPreConditions/test.phpt +++ b/test/EndToEnd/Version12/TestCase/WithAssertPreConditions/test.phpt @@ -22,11 +22,11 @@ Configuration: %s/EndToEnd/Version12/TestCase/WithAssertPreConditions/phpunit.xm ... 3 / 3 (100%) -Detected 3 tests where the duration exceeded the maximum duration. +Detected 3 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.4%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\WithAssertPreConditions\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\WithAssertPreConditions\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) -3. 00:00.1%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\WithAssertPreConditions\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration +1. 00:00.4%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\WithAssertPreConditions\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\WithAssertPreConditions\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +3. 00:00.1%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\WithAssertPreConditions\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration Time: %s, Memory: %s diff --git a/test/EndToEnd/Version12/TestCase/WithBeforeAttribute/test.phpt b/test/EndToEnd/Version12/TestCase/WithBeforeAttribute/test.phpt index 95a64c2d..4da4f835 100644 --- a/test/EndToEnd/Version12/TestCase/WithBeforeAttribute/test.phpt +++ b/test/EndToEnd/Version12/TestCase/WithBeforeAttribute/test.phpt @@ -22,11 +22,11 @@ Configuration: %s/EndToEnd/Version12/TestCase/WithBeforeAttribute/phpunit.xml ... 3 / 3 (100%) -Detected 3 tests where the duration exceeded the maximum duration. +Detected 3 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.4%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\WithBeforeAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\WithBeforeAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) -3. 00:00.1%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\WithBeforeAttribute\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration +1. 00:00.4%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\WithBeforeAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\WithBeforeAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +3. 00:00.1%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\WithBeforeAttribute\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration Time: %s, Memory: %s diff --git a/test/EndToEnd/Version12/TestCase/WithBeforeClassAttribute/test.phpt b/test/EndToEnd/Version12/TestCase/WithBeforeClassAttribute/test.phpt index 4f972b0d..03146821 100644 --- a/test/EndToEnd/Version12/TestCase/WithBeforeClassAttribute/test.phpt +++ b/test/EndToEnd/Version12/TestCase/WithBeforeClassAttribute/test.phpt @@ -22,10 +22,10 @@ Configuration: %s/EndToEnd/Version12/TestCase/WithBeforeClassAttribute/phpunit.x ... 3 / 3 (100%) -Detected 2 tests where the duration exceeded the maximum duration. +Detected 2 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\WithBeforeClassAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\WithBeforeClassAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +1. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\WithBeforeClassAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\WithBeforeClassAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) Time: %s, Memory: %s diff --git a/test/EndToEnd/Version12/TestCase/WithDataProvider/test.phpt b/test/EndToEnd/Version12/TestCase/WithDataProvider/test.phpt index eb9d7fb3..939c975e 100644 --- a/test/EndToEnd/Version12/TestCase/WithDataProvider/test.phpt +++ b/test/EndToEnd/Version12/TestCase/WithDataProvider/test.phpt @@ -22,10 +22,10 @@ Configuration: %s/EndToEnd/Version12/TestCase/WithDataProvider/phpunit.xml ... 3 / 3 (100%) -Detected 2 tests where the duration exceeded the maximum duration. +Detected 2 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\WithDataProvider\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\WithDataProvider\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +1. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\WithDataProvider\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\WithDataProvider\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) Time: %s, Memory: %s diff --git a/test/EndToEnd/Version12/TestCase/WithSetUp/test.phpt b/test/EndToEnd/Version12/TestCase/WithSetUp/test.phpt index 3f390a13..4c63dd44 100644 --- a/test/EndToEnd/Version12/TestCase/WithSetUp/test.phpt +++ b/test/EndToEnd/Version12/TestCase/WithSetUp/test.phpt @@ -22,11 +22,11 @@ Configuration: %s/EndToEnd/Version12/TestCase/WithSetUp/phpunit.xml ... 3 / 3 (100%) -Detected 3 tests where the duration exceeded the maximum duration. +Detected 3 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.4%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\WithSetUp\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\WithSetUp\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) -3. 00:00.1%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\WithSetUp\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration +1. 00:00.4%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\WithSetUp\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\WithSetUp\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +3. 00:00.1%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\WithSetUp\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration Time: %s, Memory: %s diff --git a/test/EndToEnd/Version12/TestCase/WithSetUpBeforeClass/test.phpt b/test/EndToEnd/Version12/TestCase/WithSetUpBeforeClass/test.phpt index d4c738c1..c28fa3ec 100644 --- a/test/EndToEnd/Version12/TestCase/WithSetUpBeforeClass/test.phpt +++ b/test/EndToEnd/Version12/TestCase/WithSetUpBeforeClass/test.phpt @@ -22,10 +22,10 @@ Configuration: %s/EndToEnd/Version12/TestCase/WithSetUpBeforeClass/phpunit.xml ... 3 / 3 (100%) -Detected 2 tests where the duration exceeded the maximum duration. +Detected 2 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\WithSetUpBeforeClass\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\WithSetUpBeforeClass\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +1. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\WithSetUpBeforeClass\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\WithSetUpBeforeClass\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) Time: %s, Memory: %s diff --git a/test/EndToEnd/Version12/TestCase/WithTearDown/test.phpt b/test/EndToEnd/Version12/TestCase/WithTearDown/test.phpt index 1d4da014..f27afdc5 100644 --- a/test/EndToEnd/Version12/TestCase/WithTearDown/test.phpt +++ b/test/EndToEnd/Version12/TestCase/WithTearDown/test.phpt @@ -22,11 +22,11 @@ Configuration: %s/EndToEnd/Version12/TestCase/WithTearDown/phpunit.xml ... 3 / 3 (100%) -Detected 3 tests where the duration exceeded the maximum duration. +Detected 3 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.4%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\WithTearDown\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\WithTearDown\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) -3. 00:00.1%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\WithTearDown\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration +1. 00:00.4%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\WithTearDown\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\WithTearDown\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +3. 00:00.1%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\WithTearDown\SleeperTest::testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration Time: %s, Memory: %s diff --git a/test/EndToEnd/Version12/TestCase/WithTearDownAfterClass/test.phpt b/test/EndToEnd/Version12/TestCase/WithTearDownAfterClass/test.phpt index 52ee0354..be81dcdb 100644 --- a/test/EndToEnd/Version12/TestCase/WithTearDownAfterClass/test.phpt +++ b/test/EndToEnd/Version12/TestCase/WithTearDownAfterClass/test.phpt @@ -22,10 +22,10 @@ Configuration: %s/EndToEnd/Version12/TestCase/WithTearDownAfterClass/phpunit.xml ... 3 / 3 (100%) -Detected 2 tests where the duration exceeded the maximum duration. +Detected 2 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:00.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\WithTearDownAfterClass\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) -2. 00:00.2%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\WithTearDownAfterClass\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) +1. 00:00.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\WithTearDownAfterClass\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #1 (300) +2. 00:00.2%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestCase\WithTearDownAfterClass\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider with data set #0 (200) Time: %s, Memory: %s diff --git a/test/EndToEnd/Version12/TestMethod/WithMaximumDurationAttribute/test.phpt b/test/EndToEnd/Version12/TestMethod/WithMaximumDurationAttribute/test.phpt index 1587b9a6..6074a7fb 100644 --- a/test/EndToEnd/Version12/TestMethod/WithMaximumDurationAttribute/test.phpt +++ b/test/EndToEnd/Version12/TestMethod/WithMaximumDurationAttribute/test.phpt @@ -22,7 +22,7 @@ Configuration: %s/EndToEnd/Version12/TestMethod/WithMaximumDurationAttribute/php .. 2 / 2 (100%) -Detected 1 test where the duration exceeded the maximum duration. +Detected 1 test where the duration exceeded the maximum duration (00:00.100). 1. 00:00.3%s (00:00.200) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestMethod\WithMaximumDurationAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromAttributeWhenTestMethodHasValidMaximumDurationAttribute diff --git a/test/EndToEnd/Version12/TestMethod/WithRunInSeparateProcessAttribute/test.phpt b/test/EndToEnd/Version12/TestMethod/WithRunInSeparateProcessAttribute/test.phpt index f9e47daf..e4d2b5c6 100644 --- a/test/EndToEnd/Version12/TestMethod/WithRunInSeparateProcessAttribute/test.phpt +++ b/test/EndToEnd/Version12/TestMethod/WithRunInSeparateProcessAttribute/test.phpt @@ -27,12 +27,12 @@ Configuration: %s/EndToEnd/Version12/TestMethod/WithRunInSeparateProcessAttribut .... 4 / 4 (100%) -Detected 4 tests where the duration exceeded the maximum duration. +Detected 4 tests where the duration exceeded the maximum duration (00:00.100). -1. 00:01.3%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestMethod\WithRunInSeparateProcessAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWhenMethodHasRunInSeparateProcessAttribute -2. 00:01.0%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestMethod\WithRunInSeparateProcessAttribute\SleeperTest::testSleeperSleepsShorterThanMaximumDurationFromXmlConfigurationWhenMethodHasRunInSeparateProcessAttribute -3. 00:00.8%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestMethod\WithRunInSeparateProcessAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfiguration -4. 00:00.6%s (00:00.100) Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestMethod\WithRunInSeparateProcessAttribute\SleeperTest::testSleeperSleepsShorterThanMaximumDurationFromXmlConfiguration +1. 00:01.3%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestMethod\WithRunInSeparateProcessAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWhenMethodHasRunInSeparateProcessAttribute +2. 00:01.0%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestMethod\WithRunInSeparateProcessAttribute\SleeperTest::testSleeperSleepsShorterThanMaximumDurationFromXmlConfigurationWhenMethodHasRunInSeparateProcessAttribute +3. 00:00.8%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestMethod\WithRunInSeparateProcessAttribute\SleeperTest::testSleeperSleepsLongerThanMaximumDurationFromXmlConfiguration +4. 00:00.6%s Ergebnis\PHPUnit\SlowTestDetector\Test\EndToEnd\Version12\TestMethod\WithRunInSeparateProcessAttribute\SleeperTest::testSleeperSleepsShorterThanMaximumDurationFromXmlConfiguration Time: %s, Memory: %s diff --git a/test/Unit/Reporter/DefaultReporterTest.php b/test/Unit/Reporter/DefaultReporterTest.php index 6e6d29eb..3ece9d8c 100644 --- a/test/Unit/Reporter/DefaultReporterTest.php +++ b/test/Unit/Reporter/DefaultReporterTest.php @@ -52,6 +52,7 @@ public function testReportReturnsEmptyStringWhenSlowTestListIsEmpty() $reporter = new Reporter\DefaultReporter( new Formatter\DefaultDurationFormatter(), + MaximumDuration::fromDuration(Duration::fromMilliseconds($faker->numberBetween(0))), MaximumCount::fromCount(Count::fromInt($faker->numberBetween(1))) ); @@ -65,11 +66,13 @@ public function testReportReturnsEmptyStringWhenSlowTestListIsEmpty() */ public function testReportReturnsReportWhenSlowTestListHasFewerSlowTestsThanMaximumCount( string $expectedReport, + MaximumDuration $maximumDuration, MaximumCount $maximumCount, SlowTestList $slowTestList ) { $reporter = new Reporter\DefaultReporter( new Formatter\DefaultDurationFormatter(), + $maximumDuration, $maximumCount ); @@ -79,18 +82,19 @@ public function testReportReturnsReportWhenSlowTestListHasFewerSlowTestsThanMaxi } /** - * @return \Generator + * @return \Generator */ public static function provideExpectedReportMaximumCountAndSlowTestList(): iterable { $values = [ 'header-singular' => [ <<<'TXT' -Detected 1 test where the duration exceeded the maximum duration. +Detected 1 test where the duration exceeded the maximum duration (00:00.500). 1. 00:00.300 (00:00.100) FooTest::test TXT , + MaximumDuration::fromDuration(Duration::fromMilliseconds(500)), MaximumCount::fromCount(Count::fromInt(1)), SlowTestList::create( SlowTest::create( @@ -103,12 +107,13 @@ public static function provideExpectedReportMaximumCountAndSlowTestList(): itera ], 'header-plural' => [ <<<'TXT' -Detected 2 tests where the duration exceeded the maximum duration. +Detected 2 tests where the duration exceeded the maximum duration (00:00.500). 1. 00:00.300 (00:00.100) FooTest::test 2. 00:00.275 (00:00.100) BarTest::test TXT , + MaximumDuration::fromDuration(Duration::fromMilliseconds(500)), MaximumCount::fromCount(Count::fromInt(2)), SlowTestList::create( SlowTest::create( @@ -127,13 +132,14 @@ public static function provideExpectedReportMaximumCountAndSlowTestList(): itera ], 'list-sorted' => [ <<<'TXT' -Detected 3 tests where the duration exceeded the maximum duration. +Detected 3 tests where the duration exceeded the maximum duration (00:00.500). 1. 00:00.300 (00:00.100) FooTest::test 2. 00:00.275 (00:00.100) BarTest::test 3. 00:00.250 (00:00.100) BazTest::test TXT , + MaximumDuration::fromDuration(Duration::fromMilliseconds(500)), MaximumCount::fromCount(Count::fromInt(3)), SlowTestList::create( SlowTest::create( @@ -158,13 +164,14 @@ public static function provideExpectedReportMaximumCountAndSlowTestList(): itera ], 'list-unsorted' => [ <<<'TXT' -Detected 3 tests where the duration exceeded the maximum duration. +Detected 3 tests where the duration exceeded the maximum duration (00:00.500). 1. 00:00.300 (00:00.100) FooTest::test 2. 00:00.275 (00:00.100) BarTest::test 3. 00:00.250 (00:00.100) BazTest::test TXT , + MaximumDuration::fromDuration(Duration::fromMilliseconds(500)), MaximumCount::fromCount(Count::fromInt(3)), SlowTestList::create( SlowTest::create( @@ -189,7 +196,7 @@ public static function provideExpectedReportMaximumCountAndSlowTestList(): itera ], 'list-different-maximum-duration' => [ <<<'TXT' -Detected 10 tests where the duration exceeded the maximum duration. +Detected 10 tests where the duration exceeded the maximum duration (00:00.500). 1. 20:50.000 (16:40.000) FooTest::test 2. 09:35.000 (08:20.000) BarTest::test @@ -203,6 +210,7 @@ public static function provideExpectedReportMaximumCountAndSlowTestList(): itera 10. 00:00.110 (00:00.100) FredTest::test TXT , + MaximumDuration::fromDuration(Duration::fromMilliseconds(500)), MaximumCount::fromCount(Count::fromInt(10)), SlowTestList::create( SlowTest::create( @@ -269,13 +277,14 @@ public static function provideExpectedReportMaximumCountAndSlowTestList(): itera ], 'footer-singular' => [ <<<'TXT' -Detected 2 tests where the duration exceeded the maximum duration. +Detected 2 tests where the duration exceeded the maximum duration (00:00.500). 1. 00:00.300 (00:00.100) FooTest::test There is 1 additional slow test that is not listed here. TXT , + MaximumDuration::fromDuration(Duration::fromMilliseconds(500)), MaximumCount::fromCount(Count::fromInt(1)), SlowTestList::create( SlowTest::create( @@ -294,13 +303,14 @@ public static function provideExpectedReportMaximumCountAndSlowTestList(): itera ], 'footer-plural' => [ <<<'TXT' -Detected 3 tests where the duration exceeded the maximum duration. +Detected 3 tests where the duration exceeded the maximum duration (00:00.500). 1. 00:00.300 (00:00.100) FooTest::test There are 2 additional slow tests that are not listed here. TXT , + MaximumDuration::fromDuration(Duration::fromMilliseconds(500)), MaximumCount::fromCount(Count::fromInt(1)), SlowTestList::create( SlowTest::create( @@ -325,9 +335,10 @@ public static function provideExpectedReportMaximumCountAndSlowTestList(): itera ], ]; - foreach ($values as $key => list($expected, $maximumCount, $slowTestList)) { + foreach ($values as $key => list($expected, $maximumDuration, $maximumCount, $slowTestList)) { yield $key => [ $expected, + $maximumDuration, $maximumCount, $slowTestList, ];