https://github.com/backendtea/easytest
Easy testing for PHP
https://github.com/backendtea/easytest
Last synced: about 2 months 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 (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-07-25T18:35:12.000Z (almost 6 years ago)
- Last Synced: 2025-02-17T23:48:15.162Z (4 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
[](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.