Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/backendtea/easytest
- Owner: BackEndTea
- License: mit
- Created: 2019-07-14T18:18:55.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-07-25T18:35:12.000Z (over 5 years ago)
- Last Synced: 2024-11-24T19:41:37.361Z (about 2 months ago)
- Language: PHP
- Size: 23.4 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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);
});
});```
## WhyI wanted to make this, mostly to see if it would be hard to write
a test framework like this in PHP.