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
This commit is contained in:
Fabien Potencier 2015-04-08 07:25:44 +02:00
commit e140c7f3bd
12 changed files with 2 additions and 35 deletions

View File

@ -45,5 +45,5 @@ install:
script: script:
- 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; - 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;
- if [ "$deps" = "no" ]; then echo -e "\\nRunning tests requiring tty"; phpunit --group tty || (echo -e "\\e[41mKO\\e[0m tty group" && $(exit 1)); fi; - if [ "$deps" = "no" ]; then echo -e "\\nRunning tests requiring tty"; phpunit --group tty || (echo -e "\\e[41mKO\\e[0m tty group" && $(exit 1)); fi;
- 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; - 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;
- 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; - 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;

View File

@ -330,9 +330,6 @@ class UniqueEntityValidatorTest extends AbstractConstraintValidatorTest
$this->assertNoViolation(); $this->assertNoViolation();
} }
/**
* @group GH-1635
*/
public function testAssociatedEntity() public function testAssociatedEntity()
{ {
$constraint = new UniqueEntity(array( $constraint = new UniqueEntity(array(
@ -389,7 +386,6 @@ class UniqueEntityValidatorTest extends AbstractConstraintValidatorTest
/** /**
* @expectedException \Symfony\Component\Validator\Exception\ConstraintDefinitionException * @expectedException \Symfony\Component\Validator\Exception\ConstraintDefinitionException
* @expectedExceptionMessage Associated entities are not allowed to have more than one identifier field * @expectedExceptionMessage Associated entities are not allowed to have more than one identifier field
* @group GH-1635
*/ */
public function testAssociatedCompositeEntity() public function testAssociatedCompositeEntity()
{ {

View File

@ -11,9 +11,6 @@
namespace Symfony\Bundle\FrameworkBundle\Tests\Functional; namespace Symfony\Bundle\FrameworkBundle\Tests\Functional;
/**
* @group functional
*/
class FragmentTest extends WebTestCase class FragmentTest extends WebTestCase
{ {
/** /**

View File

@ -11,9 +11,6 @@
namespace Symfony\Bundle\FrameworkBundle\Tests\Functional; namespace Symfony\Bundle\FrameworkBundle\Tests\Functional;
/**
* @group functional
*/
class ProfilerTest extends WebTestCase class ProfilerTest extends WebTestCase
{ {
/** /**

View File

@ -11,9 +11,6 @@
namespace Symfony\Bundle\FrameworkBundle\Tests\Functional; namespace Symfony\Bundle\FrameworkBundle\Tests\Functional;
/**
* @group functional
*/
class SessionTest extends WebTestCase class SessionTest extends WebTestCase
{ {
/** /**

View File

@ -11,9 +11,6 @@
namespace Symfony\Bundle\FrameworkBundle\Tests\Functional; namespace Symfony\Bundle\FrameworkBundle\Tests\Functional;
/**
* @group functional
*/
class SubRequestsTest extends WebTestCase class SubRequestsTest extends WebTestCase
{ {
public function testStateAfterSubRequest() public function testStateAfterSubRequest()

View File

@ -11,9 +11,6 @@
namespace Symfony\Bundle\SecurityBundle\Tests\Functional; namespace Symfony\Bundle\SecurityBundle\Tests\Functional;
/**
* @group functional
*/
class CsrfFormLoginTest extends WebTestCase class CsrfFormLoginTest extends WebTestCase
{ {
/** /**

View File

@ -13,9 +13,6 @@ namespace Symfony\Bundle\SecurityBundle\Tests\Functional;
use Symfony\Bundle\SecurityBundle\Tests\Functional\Bundle\FirewallEntryPointBundle\Security\EntryPointStub; use Symfony\Bundle\SecurityBundle\Tests\Functional\Bundle\FirewallEntryPointBundle\Security\EntryPointStub;
/**
* @group functional
*/
class FirewallEntryPointTest extends WebTestCase class FirewallEntryPointTest extends WebTestCase
{ {
public function testItUsesTheConfiguredEntryPointWhenUsingUnknownCredentials() public function testItUsesTheConfiguredEntryPointWhenUsingUnknownCredentials()

View File

@ -11,9 +11,6 @@
namespace Symfony\Bundle\SecurityBundle\Tests\Functional; namespace Symfony\Bundle\SecurityBundle\Tests\Functional;
/**
* @group functional
*/
class FormLoginTest extends WebTestCase class FormLoginTest extends WebTestCase
{ {
/** /**

View File

@ -65,7 +65,6 @@ class SecurityRoutingIntegrationTest extends WebTestCase
/** /**
* @dataProvider getConfigs * @dataProvider getConfigs
* @group ip_whitelist
*/ */
public function testSecurityConfigurationForSingleIPAddress($config) public function testSecurityConfigurationForSingleIPAddress($config)
{ {
@ -78,7 +77,6 @@ class SecurityRoutingIntegrationTest extends WebTestCase
/** /**
* @dataProvider getConfigs * @dataProvider getConfigs
* @group ip_whitelist
*/ */
public function testSecurityConfigurationForMultipleIPAddresses($config) public function testSecurityConfigurationForMultipleIPAddresses($config)
{ {

View File

@ -11,9 +11,6 @@
namespace Symfony\Bundle\SecurityBundle\Tests\Functional; namespace Symfony\Bundle\SecurityBundle\Tests\Functional;
/**
* @group functional
*/
class SwitchUserTest extends WebTestCase class SwitchUserTest extends WebTestCase
{ {
/** /**

View File

@ -132,8 +132,6 @@ class FinderTest extends Iterator\RealIteratorTestCase
/** /**
* @dataProvider getRegexNameTestData * @dataProvider getRegexNameTestData
*
* @group regexName
*/ */
public function testRegexName($adapter, $regex) public function testRegexName($adapter, $regex)
{ {
@ -495,7 +493,6 @@ class FinderTest extends Iterator\RealIteratorTestCase
/** /**
* @dataProvider getContainsTestData * @dataProvider getContainsTestData
* @group grep
*/ */
public function testContains($adapter, $matchPatterns, $noMatchPatterns, $expected) public function testContains($adapter, $matchPatterns, $noMatchPatterns, $expected)
{ {