Skip to content
Serghei Iakovlev edited this page Dec 25, 2016 · 1 revision

Phosphorum uses Codeception functional, acceptance, console and unit test suites.

First you need to re-generate base classes for all suites:

$ vendor/bin/codecept build

Then, you will able to run all tests with run command:

$ vendor/bin/codecept run
# OR
$ vendor/bin/codecept run -vvv # Detailed output

To run concrete suite, for example unit, execute the command as follows:

# functional, acceptance, console, unit
$ vendor/bin/codecept run unit

For more details about Console Commands see here.