jaimelopez / testuals
Simple PHP unit tests framework
Installs: 29
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/jaimelopez/testuals
Requires
- php: ^5.6 || ^7.0
- beberlei/assert: ^2.6
- phpunit/phpunit: ^5.6
- symfony/config: ^3.1
- symfony/console: ^3.1
- symfony/dependency-injection: ^3.1
- symfony/finder: ^3.1
- symfony/yaml: ^3.1
This package is not auto-updated.
Last update: 2025-10-12 11:37:00 UTC
README
Simple PHP unit tests framework
Testuals is an unit test framework designed to simplify your life allowing you to define some stupid tests in a simple, understandable and more textual way.
It was made as a PoC in a single HackDay so there would have a lot of functionalities to implement and some changes to do.
Installation
You can install Testuals with Composer:
$> composer require jaimelopez/testuals
If you don't have a composer installed globally then you can get Testuals doing:
$> curl -sS https://getcomposer.org/installer | php $> php composer.phar require jaimelopez/testuals
After that you'll be able to run Testuals via:
$> vendor/bin/testuals
Examples
There are a example project using Testuals: https://github.com/jaimelopez/testuals-example