#!/bin/sh

. ../../../SetServiceLocation

count=0

#while true
#do
echo
echo Initializing tester

$tester initialize choice

echo
echo Running cases:
echo
echo tcINVOKE_CHOICE_OPERATIONS
echo -------------------------------------------
echo
$tester run choice tcINVOKE_CHOICE_OPERATIONS | tee Choice.log
echo
echo tcCOMPLEX_CHOICE_OPERATIONS
echo -------------------------------------------
echo
$tester run choice tcCOMPLEX_CHOICE_OPERATIONS | tee Choice.log
echo
$tester release choice
count=`expr $count + 1`
echo Tests run: $count
#done
