/******************************************************************
 * Program: Count Tester
 *
 * Programmer: Tyler Johnson
 *
 * Due Date: N/A

 *
 * COMP 110-001        Instructor: Tyler Johnson
 *
 * Description: This program tests the functionality of the Counter
 *				class.
 *
 * Input: None
 *
 * Output: Test case results
 *
 ******************************************************************/
 
 public class CountTester  {
 
 	public static void main(String[] args)  {
	
		Counter counter = new Counter(); //creates an object of class Counter called counter
		
		counter.display();
		
		counter.increment();
		
		counter.display();
		
		counter.decrement();
		counter.decrement();
		
		counter.display();
		
		counter.increment();
		counter.increment();
		counter.increment();
		counter.increment();
		
		counter.display();
			
		counter.reset();
		counter.display();
		
		int currCount = counter.getCount();
			
	}
 }