gshute.util
Class RandomAccessTester

java.lang.Object
  |
  +--gshute.ioutil.Tester
        |
        +--gshute.util.RandomAccessTester

public class RandomAccessTester
extends Tester

The RandomAccessTester class provides a main() method for testing the common methods for implementations of the Table and Dictionary interfaces.


Field Summary
protected  RandomAccess theRandomAccess
          theRandomAccess is the RandomAccess that is being tested by this RandomAccessTester.
 
Fields inherited from class gshute.ioutil.Tester
commandStream, commandTable, prompt
 
Constructor Summary
RandomAccessTester()
           
 
Method Summary
 void addCommands()
          addCommands() adds testing commands to the command table.
static void main(java.lang.String[] args)
          If this program is executed with no command line argument then it executes commands entered from the terminal.
 
Methods inherited from class gshute.ioutil.Tester
doCommands, openStream, startInteractive
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

theRandomAccess

protected RandomAccess theRandomAccess
theRandomAccess is the RandomAccess that is being tested by this RandomAccessTester.
Constructor Detail

RandomAccessTester

public RandomAccessTester()
Method Detail

addCommands

public void addCommands()
addCommands() adds testing commands to the command table.
Overrides:
addCommands in class Tester

main

public static void main(java.lang.String[] args)
                 throws java.io.FileNotFoundException,
                        java.io.IOException
If this program is executed with no command line argument then it executes commands entered from the terminal. If this program is executed with a single command-line argument then that argument is interpreted as a file name. The program attempts to open the named file and execute the commands in it. If the open fails, or if there is more than one command-line argument, then the program terminates with an error message.