Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/the-events-calendar/tec-testing-facilities
Testing facilities, helpers and examples.
https://github.com/the-events-calendar/tec-testing-facilities
codeception testing-tools wordpress wordpress-plugin
Last synced: 8 days ago
JSON representation
Testing facilities, helpers and examples.
- Host: GitHub
- URL: https://github.com/the-events-calendar/tec-testing-facilities
- Owner: the-events-calendar
- License: gpl-3.0
- Created: 2019-05-15T18:01:29.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-08-20T13:23:13.000Z (4 months ago)
- Last Synced: 2024-12-15T22:33:22.513Z (11 days ago)
- Topics: codeception, testing-tools, wordpress, wordpress-plugin
- Language: PHP
- Homepage:
- Size: 206 KB
- Stars: 4
- Watchers: 29
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# The Events Calendar testing facilities
A set of testing helpers, add-ons and gimmicks to make The Events Calendar product testing easier.
## Requirements
The library requires PHP 7.4 or above.
While most of our code is compatible with PHP 5.6 or above the **test** code will run on PHP 7.0 or above CI environments.## Installation
Use [Composer](https://getcomposer.org/) to require the library in your project.
Since this package is not on Packagist you'll need to define the package in your project `composer.json` file by adding an entry in the `repositories` section:```json
"repositories": [
{
"name": "the-events-calendar/tec-testing-facilities",
"type": "github",
"url": "https://github.com/the-events-calendar/tec-testing-facilities",
"no-api": true
}
],
```You'll now be able to pull in the library with the following command:
```bash
composer require --dev the-events-calendar/tec-testing-facilities:dev-master
```## What's inside?
Read more [in the documentation](docs/README.md).