Forrest logo
back to the phpunit tool

phpunit:tests:run

Run tests in the current directory. Note: Expects you to have a 'phpunit.xml'.
$ phpunit
try on your machine

PHPUnit is a command-line tool for conducting unit testing in PHP. The "phpunit" command is used to execute unit tests written using the PHPUnit testing framework. It runs a test suite, consisting of multiple test cases, to verify that the code being tested works as expected. PHPUnit can be used to test a variety of PHP applications, including web applications, libraries, and frameworks. The command may need additional parameters like the path to the test suite or configuration file.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.

Questions that are answered by this command:

  • How run phpunit tests?
back to the phpunit tool