#!/bin/bash
cd tests/cases
for f in *
do
    echo ""
    echo "Running test $f..."
    php $f
done
