//ConsoleWelcomeTest.java
//A "test driver" for the ConsoleWelcome class

public class ConsoleWelcomeTest
{
    public static void main(String[] args)
    {
        //We use "app" as a short generic term for "application".
        ConsoleWelcome app = new ConsoleWelcome(
            "Welcome to the Java Workshop!",
            "Friday, May 6, 2005");
        app.display();
    }
}

/*
Note that, in the very best object-oriented tradition, this
little test driver first creates an object, or an "instance",
of the class ConsoleWelcome, and then sends it a message to
display itself.
*/