phpunit / phpunit-skeleton-generator
Tool that can generate skeleton test classes from production code classes and vice versa
Installs: 476 602
Dependents: 40
Suggesters: 0
Security: 0
Stars: 159
Watchers: 13
Forks: 97
Open Issues: 9
Requires
- php: >=5.3.3
- phpunit/php-text-template: ~1.2
- sebastian/version: ~1.0
- symfony/console: ~2.4
Requires (Dev)
- mikey179/vfsstream: ~1.2
- phpunit/phpunit: ~4.0
This package is not auto-updated.
Last update: 2022-02-01 12:30:06 UTC
README
This project has been abandoned and is no longer maintained.
PHPUnit Skeleton Generator
phpunit-skelgen
is a tool that can generate skeleton test classes from production code classes and vice versa.
Installation
PHP Archive (PHAR)
The easiest way to obtain phpunit-skelgen is to download a PHP Archive (PHAR) that has all required dependencies of phpunit-skelgen bundled in a single file:
wget https://phar.phpunit.de/phpunit-skelgen.phar
chmod +x phpunit-skelgen.phar
mv phpunit-skelgen.phar /usr/local/bin/phpunit-skelgen
You can also immediately use the PHAR after you have downloaded it, of course:
wget https://phar.phpunit.de/phpunit-skelgen.phar
php phpunit-skelgen.phar
Composer
Simply add a dependency on phpunit/phpunit-skeleton-generator
to your project's composer.json
file if you use Composer to manage the dependencies of your project. Here is a minimal example of a composer.json
file that just defines a development-time dependency on phpunit/phpunit-skeleton-generator:
{
"require-dev": {
"phpunit/phpunit-skeleton-generator": "*"
}
}
For a system-wide installation via Composer, you can run:
composer global require "phpunit/phpunit-skeleton-generator=*"
Make sure you have ~/.composer/vendor/bin/
in your path.