PluginProbe
MLSImport: IDX Plugin & MLS Plugin for Real Estate Listings / 6.0.5
MLSImport: IDX Plugin & MLS Plugin for Real Estate Listings v6.0.5
7.2 7.1.2 7.1.1 7.1 7.0.4 7.0.6 7.0.7 6.3.8 6.3.7 6.3.6 6.3.5 6.3.4 6.3.3 6.3.1 trunk 5.7.3 5.7.5 5.8.1 5.8.2 5.8.3 5.8.4 5.8.6 6.0.4 6.0.5 6.0.7 All 35 releases
mlsimport / docs / TESTING.md

TESTING.md in MLSImport: IDX Plugin & MLS Plugin for Real Estate Listings 6.0.5, at docs/TESTING.md

30 lines 692 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 # Running the PHPUnit tests
2
3 These tests cover some of the core functionality of the MLSImport plugin.
4
5 ## Requirements
6
7 * PHP 7.4 or later
8 * [](https://getcomposer.org/Composer](https://getcomposer.org/](https://getcomposer.org/) installed globally
9 * `phpunit` available under `vendor/bin/phpunit`. You can install it via Composer:
10
11 ```bash
12 composer require --dev phpunit/phpunit ^9
13 ```
14
15 ## Executing the tests
16
17 1. Install development dependencies (including PHPUnit) if you haven't already:
18
19 ```bash
20 composer install
21 ```
22
23 2. Run PHPUnit from the project root:
24
25 ```bash
26 vendor/bin/phpunit
27 ```
28
29 The configuration file `phpunit.xml` will bootstrap the test environment and run the test suite located in the `tests/` directory.
30