Subversion Repositories programming

Rev

Rev 100 | Blame | Compare with Previous | Last modification | View Log | RSS feed

// Written by Ira Snyder
// Project #5
// Due Date: 12-02-2004
// License: Public Domain (added 07-11-2005)

import java.io.*;

class Driver {
    public static void main ( String [] args ) throws Exception {
        Test test = new Test();
        test.test1(); //run the 512 random test

        System.out.println();
        test.test2(); //run the 1024 random test

        System.out.println();
        test.test3(); //run the 2048 random test

        System.out.println();
        test.test4(); //run the 4096 random test

        System.out.println();
        test.test5(); //run the 1024 ascending test

        System.out.println();
        test.test6(); //run the 1024 descending test

        System.out.println();
        test.test7(); //run the 1024 value 1.0 test
    }
}