mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 22:28:51 +00:00
[ticket/9593] A readme file for unit tests and running unit tests.
Added a readme file explaining prerequisites for unit tests, and how to run unit tests. PHPBB3-9593
This commit is contained in:
parent
91399fd357
commit
030f9c03c6
1 changed files with 33 additions and 0 deletions
33
tests/RUNNING_TESTS.txt
Normal file
33
tests/RUNNING_TESTS.txt
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
Running Tests
|
||||||
|
-------------
|
||||||
|
|
||||||
|
Prerequisites
|
||||||
|
-------------
|
||||||
|
|
||||||
|
PHPUnit
|
||||||
|
=======
|
||||||
|
|
||||||
|
phpBB unit tests use PHPUnit framework. Version 3.3 or better is required
|
||||||
|
to run the tests. PHPUnit prefers to be installed via PEAR; refer to
|
||||||
|
http://www.phpunit.de/ for more information.
|
||||||
|
|
||||||
|
PHP extensions
|
||||||
|
==============
|
||||||
|
|
||||||
|
Unit tests use several PHP extensions that board code does not use. Currently
|
||||||
|
the following PHP extensions must be installed and enabled to run unit tests:
|
||||||
|
|
||||||
|
- ctype
|
||||||
|
|
||||||
|
Running
|
||||||
|
-------
|
||||||
|
|
||||||
|
Once the prerequisites are installed, run the tests from tests directory:
|
||||||
|
|
||||||
|
$ phpunit all_tests.php
|
||||||
|
|
||||||
|
More Information
|
||||||
|
----------------
|
||||||
|
|
||||||
|
Further information is available on phpbb wiki:
|
||||||
|
http://wiki.phpbb.com/display/DEV/Unit+Tests
|
Loading…
Add table
Reference in a new issue