Download the PHP package chr0n1x/php_codesniffer_tests without Composer
On this page you can find all versions of the php package chr0n1x/php_codesniffer_tests. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Please rate this library. Is it a good library?
Informations about the package php_codesniffer_tests
php_codesniffer_tests
Fork of squizlabs/PHP_CodeSniffer, but just the AbstractSniffUnitTest
class. Why?
- I didn't want to lose any git commit history for this particular file!
- Now in your
composer.json
you can just
and automatically have access to AbstractSniffUnitTest
in your unit tests when you require(__DIR__.'/vendor/autoload.php');
- allows you to use phpunit xml configuration files and test locally, right in your own standards repo
- Easy CI integration. Just
composer install && ${RUN_SUITE}
- hopefully encourages people to write tests for their PHP_CodeSniffer sniffs!
Differences between this class and the one included with PHP_CodeSniffer:
- The
runTests()
method is public and marked as a PHPUnit test (ie:@test
). It also runs per sniff automatically, as in only one sniff will be tested with it's corresponding.inc
file. Makes sense, right? TEST_PATH
(required)- Because this package is installable via
composer
it's conceptually better to define somewhere, somehow, where your tests are located. Also, it's a bit less nebulous.
- Because this package is installable via
STANDARD_PATH
(optional)- This is specifically for standards that you have not yet officially installed in your instance of
phpcs
. If this const is not defined, the class will use the original method - parse the test class name & assume that everything is in thephpcs
home dir
- This is specifically for standards that you have not yet officially installed in your instance of
TEST_EXT
(optional)- The original suite required all your tests to be
{$SNIFF_NAME}UnitTest.php
. Setting this constant allows you to override theUnitTest
portion completely, giving you some flexibility when organizing your tests.
- The original suite required all your tests to be
All of these constants can just be defined in a bootstrap script that requires the composer bootstrap. eg:
And, depending on how you run your tests, require this bootstrap script in either your Suite script or phpunit.xml.dist
All versions of php_codesniffer_tests with dependencies
PHP Build Version
Package Version
Requires
php Version
>=5.1.2
ext-tokenizer Version *
squizlabs/php_codesniffer Version ~2.0
phpunit/phpunit Version >=3.7
ext-tokenizer Version *
squizlabs/php_codesniffer Version ~2.0
phpunit/phpunit Version >=3.7
The package chr0n1x/php_codesniffer_tests contains the following files
Loading the files please wait ....