SoapBox/SignedRequests

View on GitHub
run_tests

Summary

Maintainability
Test Coverage
#!/bin/bash

# Any subsequent(*) commands which fail will cause the shell script to exit immediately
set -e

echo "################################################################################";
echo "# Running Integration Tests:"
echo "################################################################################";
./vendor/bin/phpunit --configuration phpunit.xml --testsuite All
echo "################################################################################";
echo "";