/*
Programmer: Jennifer Leopold Date: April 7, 2016
File: hw9_main.cpp
Purpose: Program that simulates a cafe where sandwiches
are served to customers.
To compile: g++ hw9_main.cpp hw9_functs.cpp
sandwich.cpp customer.cpp -o hw9
To execute: ./hw9
*/
#include <iostream>
#include <ctime>
#include <cstdlib>
#include "hw9_functs.h"
#include "sandwich.h"
#include "customer.h"
using namespace std;
int main()
{
// Seed the random number generator
srand(time(NULL));
cout << "\nTesting will now begin...\n";
// Test the functions associated with the Sandwich class
testSandwich();
// Test the functions associated with the Customer class
testCustomer();
// Test Customer with Sandwich
testCustomerWithSandwich();
cout << "\nTesting has completed.\n";
return 0;
}