dev-master
9999999-devZend Framework 2 module for atoum unit testing framework
MIT
The Requires
- php >=5.3.3
- atoum/atoum *
- zendframework/zend-mvc >=2.2.5
by Bryan Folliot
Wallogit.com
2017 © Pedro Peláez
Zend Framework 2 module for atoum unit testing framework
Zend Framework 2 module for Atoum unit testing framework, (*1)
For now, we can just run tests for all modules in ./module, (*2)
{
"require": {
"bfolliot/zf-atoum": "dev-master"
}
}
In most of the cases you don't need ZfAtoum in your production environment., (*3)
{
"require-dev": {
"bfolliot/zf-atoum": "dev-master"
}
}
ZfAtoum is provided with a Zend Framework console route., (*4)
Enabling it in your application.config.phpfile., (*5)
<?php
return array(
'modules' => array(
// ...
'ZfAtoum',
),
// ...
);
Then you can use:, (*6)
$ php ./public/index.php atoum # launch tests for your module (in ./module)
Zend Framework 2 module for atoum unit testing framework
MIT