An open API service indexing awesome lists of open source software.

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

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.

[![Minimum PHP Version](https://img.shields.io/badge/php-%3E%3D%205.6-8892BF.svg?style=flat-square)](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