snide / monitoring
Monitoring helper library
0.9
2013-12-30 20:55 UTC
Requires
- php: >=5.3.3
- guzzle/guzzle: v3.7.4
- symfony/filesystem: 2.3.*
Requires (Dev)
- phpunit/phpunit: 3.7.*
This package is not auto-updated.
Last update: 2024-11-05 03:05:31 UTC
README
A simple library to provide monitoring test class based & applications tests chaining
features
- Test class based
- Application management & chaining
Installation
Installation by Composer
If you use composer, add library as a dependency to the composer.json of your application
"require": { ... "snide/monitoring": "dev-master" ... },
Usage
Using existing test class
Some tests class are defined :
- Environment var
- Redis Test
- File permissions
- File existence
- Generic test
Create your own
You can create your specifics test by extends Snide\Monitoring\Model\Test class & implements execute method. Then, use TestManager to add & execute tests.