/* tester.cpp tests the Menu and AccountManager classes.
 * Joel Adams, for CS 112 at Calvin University.
 */

#include "MenuTester.h"
#include "AccountManagerTester.h"

int main() {
   MenuTester mt;
   mt.runTests();
//   AccountManagerTester amt;
//   amt.runTests();
}
