001package hw7.test;
002
003import java.io.Reader;
004import java.io.Writer;
005
006
007/**
008 * This class implements a testing driver which reads test scripts
009 * from files for your graph ADT and improved MarvelPaths application
010 * using Dijkstra's algorithm.
011 **/
012public class HW7TestDriver {
013
014
015    public static void main(String args[]) {
016    }
017
018    public HW7TestDriver(Reader r, Writer w) {
019    }
020
021    public void runTests() {
022    }
023}