/**
 * A simple class for experimenting with queue functions.
 *
 * @author Your Name
 * @version The Date
 *
 */
public class K_SimpleQueueTester
{
    /**
     * Create a driver to test queue methods and experiment with queues.
     *
     * @param args   Command line arguments are not used in this program
     */
    public static void main (String[] args)
    {
        // Create an empty queue and print the contents.
        System.out.print("Printing contents of empty queue: ");

        // Add three String objects to the queue and print the contents.
        // What other methods should be tested here?
        System.out.print("Printing contents of queue with 3 strings: ");

        // Remove an element from the queue.  Print the queue.
        System.out.print("Printing contents of queue after 1 dequeue: ");

        // Remove all elements from the queue.  Test it.
        System.out.print("Printing contents of emptied queue: ");

    }    
}
