n/**
n*
A test system for the class Counter.
n*/
npublic
class CounterTest
{
n
n /**
n * Create the user interface, start
n * the system.
n */
n public static void main (String[] argv) {
n
CounterTUI theInterface = new
n CounterTUI();
n
theInterface.start();
n }
n}