/**
 *Election Test Class
 * 
 * @author (Mr. collard) 
 * @version (2010.12.07)
 */
public class ElecTest
{
    public static void main(String args[])
    {
        Election Fall2010 = new Election(4);
        
        Fall2010.getCandidates();
        Fall2010.printList();
        Fall2010.bubbleSortByName();
        Fall2010.printList();

    }
}