Please send questions to st10@humboldt.edu .
//---------------------------------------------------------------
// File: test_nameInLights.cpp
// Name: Sharon Tuttle
// last modified: 1-18-05
//
// Purpose: tester for function nameInLights
//--------------------------------------------------------------

#include <iostream>
#include "nameInLights.h"
using namespace std;

int main()
{
    // set-up declarations

    // tests and associated cout's

    cout << endl;
    cout << "Testing function nameInLights..." << endl;
    cout << endl;

    cout << endl;
    cout << "should see: \n******************************\n\n"
         <<               "******************************\n\n";

    cout << "do see:" << endl;
    nameInLights("");

    cout << endl;
    cout << "should see: \n******************************\n"
         << "Charlie Brown\n"
         <<               "******************************\n\n";

    cout << "do see:" << endl;
    nameInLights("Charlie Brown");

    return EXIT_SUCCESS;
}