#!/bin/csh

# Now, With all Mrm Interface files built and all uid files created, run
# all Mrm Interfaces with all UID files in all possible combinations. When
# a test is run, the expected results will be echoed before the test is
# executed. Testers should make sure that the expected output matches the 
# displayed image or error condition caused by the test.

# Portions of this script will not run if the Athena Toolkit was not loaded
# on your system. All 1.1 Motif Plus Athena widgets will not display.

	echo "Begin Testing"

# Using 1.1 Mrm Interface 

	echo ""
	cd output/1.1
	echo "Now Running with a 1.1 Mrm Interface"
	echo ""
	echo "Using a 1.1 Mrm Interface and 1.1 UID file"
	echo "-- User should see a blue scrollbar --"
	echo "-- Push Next to go to next Test --"
	echo ""
	displayUid widget11
	echo ""
	echo "Using a 1.1 Mrm Interface and 1.1 Motif Plus UID file"
	echo "-- User should see an empty Bulletin Board, --"
	echo "-- and a Warning Message in the term window --"
	echo "-- Push Next to go to next Test --"
	echo ""
	displayUid ../MA/widgetMA
	echo ""
	echo "Using a 1.1 Mrm Interface and 1.1 Motif Plus Athena UID file"
	echo "-- User should see an empty Bulletin Board, --"
	echo "-- and a Warning Message in the term window --"
	echo "-- Push Next to go to next Test --"
	echo ""
	displayUid ../AA/widgetAA
	echo ""
	echo ""
	cd ..

# Using Motif Plus Mrm Interface
	
	cd MA
	echo "Now Running with a 1.1 Motif Plus Mrm Interface"
	echo ""
	echo "Using a 1.1 Motif Plus Mrm Interface and 1.1 UID file"
	echo "-- User should see a blue scrollbar --"
	echo "-- Push Next to go to next Test --"
	echo ""
	displayUid ../1.1/widget11
	echo ""
	echo "Using a 1.1 Motif Plus Mrm Interface and 1.1 Motif Plus UID file"
	echo "-- User should see a Widget with four PushButtons --"
	echo "-- Push Next to go to next Test --"
	echo ""
	displayUid widgetMA
	echo ""
	echo "Using a 1.1 Motif Plus Mrm Interface and a 1.1 Motif Plus Athena UID file"
	echo "-- User should see an empty Bulletin Board, --"
	echo "-- and a Warning Message in the term window --"
	echo "-- Push Next to go to next Test --"
	echo ""
	displayUid ../AA/widgetAA
	echo ""
	echo ""
	cd ..

# Using Motif Plus Athena Mrm Interface

	cd AA
	echo "Now Running with a 1.1 Motif Plus Athena Mrm Interface"
	echo ""
	echo "Using a 1.1 Motif Plus Athena Mrm Interface and a 1.1 UID file"
	echo "-- User should see a blue scrollbar --"
	echo "-- Push Next to go to next Test --"
	echo ""
	displayUid ../1.1/widget11
	echo ""
	echo "Using a 1.1 Motif Plus Athena Mrm Interface and a 1.1 Motif Plus UID file"
	echo "-- User should see an empty Bulletin Board, --"
	echo "-- and a Warning Message in the term window --"
	echo "-- Push Next to go to next Test --"
	echo ""
	displayUid ../MA/widgetMA
	echo ""
	echo "Using a 1.1 Motif Plus Athena Mrm Interface and a 1.1 Motif Plus Athena UID file"
	echo "-- User should see an Athena Label --"
	echo "-- Push Next to finish Testing--"
	echo ""
	displayUid widgetAA
	echo ""

	echo "Testing Finished"
	echo ""
