Running Unit Tests: Difference between revisions
From Joomla! Documentation
Radiant tech (talk | contribs) added Testing and Bug Squad categories |
SniperSister (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
{{merge|Running_Automated_Tests_for_the_Joomla_CMS#Running_Unit_Tests}} | |||
== Running the Entire Test Suite == | == Running the Entire Test Suite == | ||
Latest revision as of 08:30, 18 October 2014
It has been suggested that this article or section be merged with Running_Automated_Tests_for_the_Joomla_CMS#Running_Unit_Tests. (Discuss). Proposed since 10 years ago.
Running the Entire Test Suite
The entire test suite can be run by simply entering the test directory and typing phpunit:
cd /path/to/joomla/tests/unit phpunit
Specifying a Directory of Tests to Run
You can run a subset of tests by specifying the directory path of the tests that you want to run.
phpunit suite/libraries/joomla/utilities
Will run all of the tests in the specified directory and any subdirectory.
Using the --filter Parameter to Run Certain Tests
The --filter parameter allows you to run a specific subset of the entire test suite. The --filter parameter takes a regular expression that can be used to filter out tests.
phpunit --filter JForm
Will scan through the suite directory and run tests that contain JForm in the class name or in the method name.