/*-------
  Signature: main: void -> int

  Purpose: testing program for the function say_sound

  Examples: This should print the following to the
      screen:
Testing say_sound:
SHOULD see that the cow says oink:
The cow says, "oink".
SHOULD see that the raccoon says screech:
The raccoon says, "screech".

  by:
  last modified:
--------*/

#include <cstdlib>
#include <iostream>
#include <string>
#include <cmath>
#include "say_sound.h"
using namespace std;

int main()
{
    cout << boolalpha;

    cout << "Testing say_sound:" << endl;
    cout << "SHOULD see that the cow says oink:"
         << endl;
    say_sound("cow", "oink");

    cout << "SHOULD see that the raccoon says screech:"
         << endl;
    say_sound("raccoon", "screech");

    return EXIT_SUCCESS;
}