From fbec34fd6cc5fa5737112c6ca23123e612636ba2 Mon Sep 17 00:00:00 2001 From: Zach Borboa Date: Tue, 4 Mar 2014 22:34:40 -0800 Subject: [PATCH] Add script for running test suite --- tests/run.sh | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 tests/run.sh diff --git a/tests/run.sh b/tests/run.sh new file mode 100644 index 0000000..54330ba --- /dev/null +++ b/tests/run.sh @@ -0,0 +1,4 @@ +php -S 127.0.0.1:8000 -t PHPCurlClass/ & +pid=$! +phpunit --configuration phpunit.xml +kill $pid