001package hw6.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 testing Graph, the Marvel parser, and your BFS
010 * algorithm.
011 **/
012public class HW6TestDriver {
013
014
015  public static void main(String args[]) {
016  }
017
018  public HW6TestDriver(Reader r, Writer w) {
019  }
020
021  public void runTests() {
022  }
023}