# Testing standard

# Software

# Requirements

  • All components must be tested and covered.

# Conventions

  • Test classes must be named with the Test suffix.
  • Test classes must be located in the Tests/<component>/ directory.

# Configuration

# Running Tests

To run tests:

vendor/bin/phpunit -c phpunit.xml

To run tests with a code coverage report at ./build/coverage/:

vendor/bin/phpunit -c phpunit-report.xml

TIP

Check the PHPUnit Documentation (opens new window) for all available options.