Skip to content

Commit 8322e81

Browse files
Merge branch '3.0'
* 3.0: use the clock mock for progress indicator tests Removed 3.0 restriction for the Ldap component in the Security component Conflicts: phpunit.xml.dist src/Symfony/Component/Security/Core/composer.json src/Symfony/Component/Security/composer.json
2 parents 009b544 + d4fcaef commit 8322e81

File tree

3 files changed

+14
-0
lines changed

3 files changed

+14
-0
lines changed

phpunit.xml.dist

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@
6060
<array>
6161
<element><string>Cache\IntegrationTests</string></element>
6262
<element><string>Doctrine\Common\Cache</string></element>
63+
<element><string>Symfony\Component\Console</string></element>
6364
<element><string>Symfony\Component\HttpFoundation</string></element>
6465
</array>
6566
</element>

src/Symfony/Component/Console/Tests/Helper/ProgressIndicatorTest.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
use Symfony\Component\Console\Helper\ProgressIndicator;
66
use Symfony\Component\Console\Output\StreamOutput;
77

8+
/**
9+
* @group time-sensitive
10+
*/
811
class ProgressIndicatorTest extends \PHPUnit_Framework_TestCase
912
{
1013
public function testDefaultIndicator()

src/Symfony/Component/Console/phpunit.xml.dist

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,14 @@
2626
</exclude>
2727
</whitelist>
2828
</filter>
29+
30+
<listeners>
31+
<listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener">
32+
<arguments>
33+
<array>
34+
<element key="time-sensitive"><string>Symfony\Component\Console</string></element>
35+
</array>
36+
</arguments>
37+
</listener>
38+
</listeners>
2939
</phpunit>

0 commit comments

Comments
 (0)