8000 minor #14245 Remove some useless @group annotations (nicolas-grekas) · symfony/symfony@e140c7f · GitHub
[go: up one dir, main page]

Skip to content

Commit e140c7f

Browse files
committed
minor #14245 Remove some useless @group annotations (nicolas-grekas)
This PR was merged into the 2.3 branch. Discussion ---------- Remove some useless @group annotations | Q | A | ------------- | --- | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | - | License | MIT | Doc PR | - Commits ------- 0b70d02 Remove some useless @group annotations
2 parents 89f6e1e + 0b70d02 commit e140c7f

File tree

12 files changed

+2
-35
lines changed

12 files changed

+2
-35
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,5 +45,5 @@ install:
4545
script:
4646
- if [ "$deps" = "no" ]; then echo "$components" | parallel --gnu --keep-order 'echo -e "\\nRunning {} tests"; phpunit --exclude-group tty,benchmark,intl-data {} || (echo -e "\\e[41mKO\\e[0m {}" && $(exit 1));'; fi;
4747
- if [ "$deps" = "no" ]; then echo -e "\\nRunning tests requiring tty"; phpunit --group tty || (echo -e "\\e[41mKO\\e[0m tty group" && $(exit 1)); fi;
48-
- if [ "$deps" = "high" ]; then echo "$components" | parallel --gnu --keep-order -j25% 'echo -e "\\nRunning {} tests"; cd {}; composer --prefer-source update; phpunit --exclude-group tty,benchmark,intl-data || (echo -e "\\e[41mKO\\e[0m {}" && $(exit 1));'; fi;
49-
- if [ "$deps" = "low" ]; then echo "$components" | parallel --gnu --keep-order -j25% 'echo -e "\\nRunning {} tests"; cd {}; composer --prefer-source --prefer-lowest --prefer-stable update; phpunit --exclude-group tty,benchmark,intl-data || (echo -e "\\e[41mKO\\e[0m {}" && $(exit 1));'; fi;
48+
- if [ "$deps" = "high" ]; then echo "$components" | parallel --gnu --keep-order -j10% 'echo -e "\\nRunning {} tests"; cd {}; composer --prefer-source update; phpunit --exclude-group tty,benchmark,intl-data || (echo -e "\\e[41mKO\\e[0m {}" && $(exit 1));'; fi;
49+
- if [ "$deps" = "low" ]; then echo "$components" | parallel --gnu --keep-order -j10% 'echo -e "\\nRunning {} tests"; cd {}; composer --prefer-source --prefer-lowest --prefer-stable update; phpunit --exclude-group tty,benchmark,intl-data || (echo -e "\\e[41mKO\\e[0m {}" && $(exit 1));'; fi;

src/Symfony/Bridge/Doctrine/Tests/Validator/Constraints/UniqueEntityValidatorTest.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -330,9 +330,6 @@ public function testValidateUniquenessWithUnrewoundArray()
330330
$this->assertNoViolation();
331331
}
332332

333-
/**
334-
* @group GH-1635
335-
*/
336333
public function testAssociatedEntity()
337334
{
338335
$constraint = new UniqueEntity(array(
@@ -389,7 +386,6 @@ public function testAssociatedEntityWithNull()
389386
/**
390387
* @expectedException \Symfony\Component\Validator\Exception\ConstraintDefinitionException
391388
* @expectedExceptionMessage Associated entities are not allowed to have more than one identifier field
392-
* @group GH-1635
393389
*/
394390
public function testAssociatedCompositeEntity()
395391
{

src/Symfony/Bundle/FrameworkBundle/Tests/Functional/FragmentTest.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@
1111

1212
namespace Symfony\Bundle\FrameworkBundle\Tests\Functional;
1313

14-
/**
15-
* @group functional
16-
*/
1714
class FragmentTest extends WebTestCase
1815
{
1916
/**

src/Symfony/Bundle/FrameworkBundle/Tests/Functional/ProfilerTest.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@
1111

1212
namespace Symfony\Bundle\FrameworkBundle\Tests\Functional;
1313

14-
/**
15-
* @group functional
16-
*/
1714
class ProfilerTest extends WebTestCase
1815
{
1916
/**

src/Symfony/Bundle/FrameworkBundle/Tests/Functional/SessionTest.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@
1111

1212
namespace Symfony\Bundle\FrameworkBundle\Tests\Functional;
1313

14-
/**
15-
* @group functional
16-
*/
1714
class SessionTest extends WebTestCase
1815
{
1916
/**

src/Symfony/Bundle/FrameworkBundle/Tests/Functional/SubRequestsTest.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@
1111

1212
namespace Symfony\Bundle\FrameworkBundle\Tests\Functional;
1313

14-
/**
15-
* @group functional
16-
*/
1714
class SubRequestsTest extends WebTestCase
1815
{
1916
public function testStateAfterSubRequest()

src/Symfony/Bundle/SecurityBundle/Tests/Functional/CsrfFormLoginTest.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@
1111

1212
namespace Symfony\Bundle\SecurityBundle\Tests\Functional;
1313

14-
/**
15-
* @group functional
16-
*/
1714
class CsrfFormLoginTest extends WebTestCase
1815
{
1916
/**

src/Symfony/Bundle/SecurityBundle/Tests/Functional/FirewallEntryPointTest.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@
1313

1414
use Symfony\Bundle\SecurityBundle\Tests\Functional\Bundle\FirewallEntryPointBundle\Security\EntryPointStub;
1515

16-
/**
17-
* @group functional
18-
*/
1916
class FirewallEntryPointTest extends WebTestCase
2017
{
2118
public function testItUsesTheConfiguredEntryPointWhenUsingUnknownCredentials()

src/Symfony/Bundle/SecurityBundle/Tests/Functional/FormLoginTest.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@
1111

1212
namespace Symfony\Bundle\SecurityBundle\Tests\Functional;
1313

14-
/**
15-
* @group functional
16-
*/
1714
class FormLoginTest extends WebTestCase
1815
{
1916
/**

src/Symfony/Bundle/SecurityBundle/Tests/Functional/SecurityRoutingIntegrationTest.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@ public function testRoutingErrorIsNotExposedForProtectedResourceWhenLoggedInWith
6565

6666
/**
6767
* @dataProvider getConfigs
68-
* @group ip_whitelist
6968
*/
7069
public function testSecurityConfigurationForSingleIPAddress($config)
7170
{
@@ -78,7 +77,6 @@ public function testSecurityConfigurationForSingleIPAddress($config)
7877

7978
/**
8079
* @dataProvider getConfigs
81-
* @group ip_whitelist
8280
*/
8381
public function testSecurityConfigurationForMultipleIPAddresses($config)
8482
{

src/Symfony/Bundle/SecurityBundle/Tests/Functional/SwitchUserTest.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@
1111

1212
namespace Symfony\Bundle\SecurityBundle\Tests\Functional;
1313

14-
/**
15-
* @group functional
16-
*/
1714
class SwitchUserTest extends WebTestCase
1815
{
1916
/**

src/Symfony/Component/Finder/Tests/FinderTest.php

Lines changed: 0 additions & 3 deletions
Original file li 96B9 ne numberDiff line numberDiff line change
@@ -132,8 +132,6 @@ public function testNotName($adapter)
132132

133133
/**
134134
* @dataProvider getRegexNameTestData
135-
*
136-
* @group regexName
137135
*/
138136
public function testRegexName($adapter, $regex)
139137
{
@@ -495,7 +493,6 @@ public function testCountWithoutIn()
495493

496494
/**
497495
* @dataProvider getContainsTestData
498-
* @group grep
499496
*/
500497
public function testContains($adapter, $matchPatterns, $noMatchPatterns, $expected)
501498
{

0 commit comments

Comments
 (0)
0