https://github.com/jaimelopez/testuals
Simple PHP unit tests framework PoC
https://github.com/jaimelopez/testuals
composer package php php-library test-automation test-framework testing
Last synced: 6 months ago
JSON representation
Simple PHP unit tests framework PoC
- Host: GitHub
- URL: https://github.com/jaimelopez/testuals
- Owner: jaimelopez
- License: mit
- Created: 2016-11-24T18:28:25.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2018-01-19T14:37:30.000Z (over 8 years ago)
- Last Synced: 2024-11-16T00:11:55.503Z (over 1 year ago)
- Topics: composer, package, php, php-library, test-automation, test-framework, testing
- Language: PHP
- Homepage:
- Size: 35.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Testuals
#### 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.
[](https://php.net/)
## Installation
You can install Testuals with [Composer](https://getcomposer.org):
```bash
$> composer require jaimelopez/testuals
```
If you don't have a composer installed globally then you can get Testuals doing:
```bash
$> curl -sS https://getcomposer.org/installer | php
$> php composer.phar require jaimelopez/testuals
```
After that you'll be able to run Testuals via:
```bash
$> vendor/bin/testuals
```
## Examples
There are a example project using Testuals:
https://github.com/jaimelopez/testuals-example