Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/backendtea/easytest

Easy testing for PHP
https://github.com/backendtea/easytest

Last synced: 17 days ago
JSON representation

Easy testing for PHP

Awesome Lists containing this project

README

        

# Easy Test
[![Build Status](https://travis-ci.org/BackEndTea/EasyTest.svg?branch=master)](https://travis-ci.org/BackEndTea/EasyTest)

Easy test is a small php test framework.

## Usage

```php
toEqual(10);
});
it('should fail if it is not equal', function () {
expect(12)->toEqual(12);
});
});

```
## Why

I wanted to make this, mostly to see if it would be hard to write
a test framework like this in PHP.