f7342d7f620563bccc243466b327f6e22f2fdb6c
[lhc/web/wiklou.git] / maintenance / tests / phpunit / Makefile
1 .PHONY: help test phpunit install
2
3 all test: phpunit
4
5 phpunit:
6 phpunit --configuration suite.xml
7
8 install:
9 pear channel-discover pear.phpunit.de
10 pear install phpunit/PHPUnit
11
12 help:
13 # Targets:
14 # phpunit (default) Run all the tests with phpunit
15 # install Install PHPUnit from phpunit.de
16 # help You're looking at it!