1#!/usr/bin/env bash 2 3function test_start() 4{ 5 echo "entering test: $1" 6} 7 8function test_end() 9{ 10 echo "leaving test: $1 status: $2" 11} 12