Selaa lähdekoodia

Merge remote branch 'danielholmes/validator_test_namespaces'

* danielholmes/validator_test_namespaces:
  [Validator] fixed namespaces for validator tests
Fabien Potencier 14 vuotta sitten
vanhempi
commit
4fd5585e03
26 muutettua tiedostoa jossa 26 lisäystä ja 26 poistoa
  1. 1 1
      tests/Symfony/Tests/Component/Validator/Constraints/AllValidatorTest.php
  2. 1 1
      tests/Symfony/Tests/Component/Validator/Constraints/AssertFalseValidatorTest.php
  3. 1 1
      tests/Symfony/Tests/Component/Validator/Constraints/AssertTrueValidatorTest.php
  4. 1 1
      tests/Symfony/Tests/Component/Validator/Constraints/AssertTypeValidatorTest.php
  5. 1 1
      tests/Symfony/Tests/Component/Validator/Constraints/BlankValidatorTest.php
  6. 1 1
      tests/Symfony/Tests/Component/Validator/Constraints/CallbackValidatorTest.php
  7. 1 1
      tests/Symfony/Tests/Component/Validator/Constraints/ChoiceValidatorTest.php
  8. 1 1
      tests/Symfony/Tests/Component/Validator/Constraints/CollectionValidatorTest.php
  9. 1 1
      tests/Symfony/Tests/Component/Validator/Constraints/CountryValidatorTest.php
  10. 1 1
      tests/Symfony/Tests/Component/Validator/Constraints/DateTimeValidatorTest.php
  11. 1 1
      tests/Symfony/Tests/Component/Validator/Constraints/DateValidatorTest.php
  12. 1 1
      tests/Symfony/Tests/Component/Validator/Constraints/EmailValidatorTest.php
  13. 1 1
      tests/Symfony/Tests/Component/Validator/Constraints/FileValidatorTest.php
  14. 1 1
      tests/Symfony/Tests/Component/Validator/Constraints/IpValidatorTest.php
  15. 1 1
      tests/Symfony/Tests/Component/Validator/Constraints/LanguageValidatorTest.php
  16. 1 1
      tests/Symfony/Tests/Component/Validator/Constraints/LocaleValidatorTest.php
  17. 1 1
      tests/Symfony/Tests/Component/Validator/Constraints/MaxLengthValidatorTest.php
  18. 1 1
      tests/Symfony/Tests/Component/Validator/Constraints/MaxValidatorTest.php
  19. 1 1
      tests/Symfony/Tests/Component/Validator/Constraints/MinLengthValidatorTest.php
  20. 1 1
      tests/Symfony/Tests/Component/Validator/Constraints/MinValidatorTest.php
  21. 1 1
      tests/Symfony/Tests/Component/Validator/Constraints/NotBlankValidatorTest.php
  22. 1 1
      tests/Symfony/Tests/Component/Validator/Constraints/NotNullValidatorTest.php
  23. 1 1
      tests/Symfony/Tests/Component/Validator/Constraints/NullValidatorTest.php
  24. 1 1
      tests/Symfony/Tests/Component/Validator/Constraints/RegexValidatorTest.php
  25. 1 1
      tests/Symfony/Tests/Component/Validator/Constraints/TimeValidatorTest.php
  26. 1 1
      tests/Symfony/Tests/Component/Validator/Constraints/UrlValidatorTest.php

+ 1 - 1
tests/Symfony/Tests/Component/Validator/Constraints/AllValidatorTest.php

@@ -9,7 +9,7 @@
  * file that was distributed with this source code.
  */
 
-namespace Symfony\Tests\Component\Validator;
+namespace Symfony\Tests\Component\Validator\Constraints;
 
 use Symfony\Component\Validator\ExecutionContext;
 use Symfony\Component\Validator\Constraints\Min;

+ 1 - 1
tests/Symfony/Tests/Component/Validator/Constraints/AssertFalseValidatorTest.php

@@ -9,7 +9,7 @@
  * file that was distributed with this source code.
  */
 
-namespace Symfony\Tests\Component\Validator;
+namespace Symfony\Tests\Component\Validator\Constraints;
 
 use Symfony\Component\Validator\Constraints\False;
 use Symfony\Component\Validator\Constraints\FalseValidator;

+ 1 - 1
tests/Symfony/Tests/Component/Validator/Constraints/AssertTrueValidatorTest.php

@@ -9,7 +9,7 @@
  * file that was distributed with this source code.
  */
 
-namespace Symfony\Tests\Component\Validator;
+namespace Symfony\Tests\Component\Validator\Constraints;
 
 use Symfony\Component\Validator\Constraints\True;
 use Symfony\Component\Validator\Constraints\TrueValidator;

+ 1 - 1
tests/Symfony/Tests/Component/Validator/Constraints/AssertTypeValidatorTest.php

@@ -9,7 +9,7 @@
  * file that was distributed with this source code.
  */
 
-namespace Symfony\Tests\Component\Validator;
+namespace Symfony\Tests\Component\Validator\Constraints;
 
 use Symfony\Component\Validator\Constraints\Type;
 use Symfony\Component\Validator\Constraints\TypeValidator;

+ 1 - 1
tests/Symfony/Tests/Component/Validator/Constraints/BlankValidatorTest.php

@@ -9,7 +9,7 @@
  * file that was distributed with this source code.
  */
 
-namespace Symfony\Tests\Component\Validator;
+namespace Symfony\Tests\Component\Validator\Constraints;
 
 use Symfony\Component\Validator\Constraints\Blank;
 use Symfony\Component\Validator\Constraints\BlankValidator;

+ 1 - 1
tests/Symfony/Tests/Component/Validator/Constraints/CallbackValidatorTest.php

@@ -9,7 +9,7 @@
  * file that was distributed with this source code.
  */
 
-namespace Symfony\Tests\Component\Validator;
+namespace Symfony\Tests\Component\Validator\Constraints;
 
 use Symfony\Component\Validator\ExecutionContext;
 use Symfony\Component\Validator\ConstraintViolation;

+ 1 - 1
tests/Symfony/Tests/Component/Validator/Constraints/ChoiceValidatorTest.php

@@ -9,7 +9,7 @@
  * file that was distributed with this source code.
  */
 
-namespace Symfony\Tests\Component\Validator;
+namespace Symfony\Tests\Component\Validator\Constraints;
 
 use Symfony\Component\Validator\ExecutionContext;
 use Symfony\Component\Validator\Constraints\Choice;

+ 1 - 1
tests/Symfony/Tests/Component/Validator/Constraints/CollectionValidatorTest.php

@@ -9,7 +9,7 @@
  * file that was distributed with this source code.
  */
 
-namespace Symfony\Tests\Component\Validator;
+namespace Symfony\Tests\Component\Validator\Constraints;
 
 use Symfony\Component\Validator\ExecutionContext;
 use Symfony\Component\Validator\Constraints\Min;

+ 1 - 1
tests/Symfony/Tests/Component/Validator/Constraints/CountryValidatorTest.php

@@ -9,7 +9,7 @@
  * file that was distributed with this source code.
  */
 
-namespace Symfony\Tests\Component\Validator;
+namespace Symfony\Tests\Component\Validator\Constraints;
 
 use Symfony\Component\Validator\Constraints\Country;
 use Symfony\Component\Validator\Constraints\CountryValidator;

+ 1 - 1
tests/Symfony/Tests/Component/Validator/Constraints/DateTimeValidatorTest.php

@@ -9,7 +9,7 @@
  * file that was distributed with this source code.
  */
 
-namespace Symfony\Tests\Component\Validator;
+namespace Symfony\Tests\Component\Validator\Constraints;
 
 use Symfony\Component\Validator\Constraints\DateTime;
 use Symfony\Component\Validator\Constraints\DateTimeValidator;

+ 1 - 1
tests/Symfony/Tests/Component/Validator/Constraints/DateValidatorTest.php

@@ -9,7 +9,7 @@
  * file that was distributed with this source code.
  */
 
-namespace Symfony\Tests\Component\Validator;
+namespace Symfony\Tests\Component\Validator\Constraints;
 
 use Symfony\Component\Validator\Constraints\Date;
 use Symfony\Component\Validator\Constraints\DateValidator;

+ 1 - 1
tests/Symfony/Tests/Component/Validator/Constraints/EmailValidatorTest.php

@@ -9,7 +9,7 @@
  * file that was distributed with this source code.
  */
 
-namespace Symfony\Tests\Component\Validator;
+namespace Symfony\Tests\Component\Validator\Constraints;
 
 use Symfony\Component\Validator\Constraints\Email;
 use Symfony\Component\Validator\Constraints\EmailValidator;

+ 1 - 1
tests/Symfony/Tests/Component/Validator/Constraints/FileValidatorTest.php

@@ -9,7 +9,7 @@
  * file that was distributed with this source code.
  */
 
-namespace Symfony\Tests\Component\Validator;
+namespace Symfony\Tests\Component\Validator\Constraints;
 
 use Symfony\Component\Validator\Constraints\File;
 use Symfony\Component\Validator\Constraints\FileValidator;

+ 1 - 1
tests/Symfony/Tests/Component/Validator/Constraints/IpValidatorTest.php

@@ -9,7 +9,7 @@
  * file that was distributed with this source code.
  */
 
-namespace Symfony\Tests\Component\Validator;
+namespace Symfony\Tests\Component\Validator\Constraints;
 
 use Symfony\Component\Validator\Constraints\Ip;
 use Symfony\Component\Validator\Constraints\IpValidator;

+ 1 - 1
tests/Symfony/Tests/Component/Validator/Constraints/LanguageValidatorTest.php

@@ -9,7 +9,7 @@
  * file that was distributed with this source code.
  */
 
-namespace Symfony\Tests\Component\Validator;
+namespace Symfony\Tests\Component\Validator\Constraints;
 
 use Symfony\Component\Validator\Constraints\Language;
 use Symfony\Component\Validator\Constraints\LanguageValidator;

+ 1 - 1
tests/Symfony/Tests/Component/Validator/Constraints/LocaleValidatorTest.php

@@ -9,7 +9,7 @@
  * file that was distributed with this source code.
  */
 
-namespace Symfony\Tests\Component\Validator;
+namespace Symfony\Tests\Component\Validator\Constraints;
 
 use Symfony\Component\Validator\Constraints\Locale;
 use Symfony\Component\Validator\Constraints\LocaleValidator;

+ 1 - 1
tests/Symfony/Tests/Component/Validator/Constraints/MaxLengthValidatorTest.php

@@ -9,7 +9,7 @@
  * file that was distributed with this source code.
  */
 
-namespace Symfony\Tests\Component\Validator;
+namespace Symfony\Tests\Component\Validator\Constraints;
 
 use Symfony\Component\Validator\Constraints\MaxLength;
 use Symfony\Component\Validator\Constraints\MaxLengthValidator;

+ 1 - 1
tests/Symfony/Tests/Component/Validator/Constraints/MaxValidatorTest.php

@@ -9,7 +9,7 @@
  * file that was distributed with this source code.
  */
 
-namespace Symfony\Tests\Component\Validator;
+namespace Symfony\Tests\Component\Validator\Constraints;
 
 use Symfony\Component\Validator\Constraints\Max;
 use Symfony\Component\Validator\Constraints\MaxValidator;

+ 1 - 1
tests/Symfony/Tests/Component/Validator/Constraints/MinLengthValidatorTest.php

@@ -9,7 +9,7 @@
  * file that was distributed with this source code.
  */
 
-namespace Symfony\Tests\Component\Validator;
+namespace Symfony\Tests\Component\Validator\Constraints;
 
 use Symfony\Component\Validator\Constraints\MinLength;
 use Symfony\Component\Validator\Constraints\MinLengthValidator;

+ 1 - 1
tests/Symfony/Tests/Component/Validator/Constraints/MinValidatorTest.php

@@ -9,7 +9,7 @@
  * file that was distributed with this source code.
  */
 
-namespace Symfony\Tests\Component\Validator;
+namespace Symfony\Tests\Component\Validator\Constraints;
 
 use Symfony\Component\Validator\Constraints\Min;
 use Symfony\Component\Validator\Constraints\MinValidator;

+ 1 - 1
tests/Symfony/Tests/Component/Validator/Constraints/NotBlankValidatorTest.php

@@ -9,7 +9,7 @@
  * file that was distributed with this source code.
  */
 
-namespace Symfony\Tests\Component\Validator;
+namespace Symfony\Tests\Component\Validator\Constraints;
 
 use Symfony\Component\Validator\Constraints\NotBlank;
 use Symfony\Component\Validator\Constraints\NotBlankValidator;

+ 1 - 1
tests/Symfony/Tests/Component/Validator/Constraints/NotNullValidatorTest.php

@@ -9,7 +9,7 @@
  * file that was distributed with this source code.
  */
 
-namespace Symfony\Tests\Component\Validator;
+namespace Symfony\Tests\Component\Validator\Constraints;
 
 use Symfony\Component\Validator\Constraints\NotNull;
 use Symfony\Component\Validator\Constraints\NotNullValidator;

+ 1 - 1
tests/Symfony/Tests/Component/Validator/Constraints/NullValidatorTest.php

@@ -9,7 +9,7 @@
  * file that was distributed with this source code.
  */
 
-namespace Symfony\Tests\Component\Validator;
+namespace Symfony\Tests\Component\Validator\Constraints;
 
 use Symfony\Component\Validator\Constraints\Null;
 use Symfony\Component\Validator\Constraints\NullValidator;

+ 1 - 1
tests/Symfony/Tests/Component/Validator/Constraints/RegexValidatorTest.php

@@ -9,7 +9,7 @@
  * file that was distributed with this source code.
  */
 
-namespace Symfony\Tests\Component\Validator;
+namespace Symfony\Tests\Component\Validator\Constraints;
 
 use Symfony\Component\Validator\Constraints\Regex;
 use Symfony\Component\Validator\Constraints\RegexValidator;

+ 1 - 1
tests/Symfony/Tests/Component/Validator/Constraints/TimeValidatorTest.php

@@ -9,7 +9,7 @@
  * file that was distributed with this source code.
  */
 
-namespace Symfony\Tests\Component\Validator;
+namespace Symfony\Tests\Component\Validator\Constraints;
 
 use Symfony\Component\Validator\Constraints\Time;
 use Symfony\Component\Validator\Constraints\TimeValidator;

+ 1 - 1
tests/Symfony/Tests/Component/Validator/Constraints/UrlValidatorTest.php

@@ -9,7 +9,7 @@
  * file that was distributed with this source code.
  */
 
-namespace Symfony\Tests\Component\Validator;
+namespace Symfony\Tests\Component\Validator\Constraints;
 
 use Symfony\Component\Validator\Constraints\Url;
 use Symfony\Component\Validator\Constraints\UrlValidator;