#! /usr/bin/ksh
#####################################################################
# function: summary
#
# description of the function:
# ----------------------------
#    Prints out a summary message.
#
# Input to the function:
# ----------------------
#    None
#
# Assumptions:
# ------------
#    SUCCESS and FAILURE have been defined as global variables.
#      e.g.) typeset -i SUCCESS
#      e.g.) typeset -i FAILURE
#
#####################################################################

echo "The number of successful test cases: $SUCCESS." 
echo "The number of failed test cases: $FAILURE." 

exit
#
#    Version      Date     Time    Owner   Comment
# ------------- -------- -------- -------- ----------------------------
# V             04/21/94 11:56:57 rachel   an initial script
