add Makefile for tests

This commit is contained in:
Sarah Hoffmann
2018-11-24 12:25:28 +01:00
parent fc99954b2e
commit 71ef94dae6

9
test/Makefile Normal file
View File

@@ -0,0 +1,9 @@
all: bdd php
bdd:
cd bdd && behave -DREMOVE_TEMPLATE=1
php:
cd php && phpunit ./
.PHONY: bdd php