Programming Resources
For Fun and Learning
Charles Cusack
Computer Science
Hope College
main

Python
C++

JAVA


PHP
SQL
Assignments

CSCI125Code


TestVotes.java

/**
 * A simple class to test the Votes class. Not very impressive, but we ran out of time.
 * @author Cusack
 */
public class TestVotes
{
    public static void runTest() {
        Votes v = new Votes();
        for(int i=0;i<5;i++) {
            v.vote("Phil");
            v.vote("Sue");
        }
        for(int i=0;i<10;i++) {
            v.vote("Phil");
            v.vote("Jake");
        }
        System.out.println(v.voteSummary());
    }
}