2024-09-21 20:23:14 -06:00
|
|
|
/**
|
|
|
|
* @file main.cpp
|
|
|
|
* @author Tyler Beckman (tyler_beckman@mines.edu)
|
2024-09-27 11:31:41 -06:00
|
|
|
* @brief CSCI200 L3B - A program containing string reading and modification
|
|
|
|
* functions, with unit tests to check many edge cases of the functions
|
2024-09-21 20:23:14 -06:00
|
|
|
* @version 1
|
|
|
|
* @date 2024-09-21
|
|
|
|
*/
|
|
|
|
|
2024-09-21 21:13:34 -06:00
|
|
|
#include "test_suite.h"
|
|
|
|
|
2024-09-24 16:56:57 -06:00
|
|
|
#include <iostream>
|
|
|
|
|
2024-09-21 21:13:34 -06:00
|
|
|
int main() {
|
|
|
|
|
2024-09-24 16:56:57 -06:00
|
|
|
std::cout << "Testing your functions..." << std::endl << std::endl;
|
|
|
|
if (run_all_tests()) {
|
|
|
|
std::cout << "ALL TESTS PASSED!" << std::endl;
|
|
|
|
} else {
|
|
|
|
std::cout << "Not all tests are passing, errors remain..." << std::endl;
|
|
|
|
}
|
2024-09-21 21:13:34 -06:00
|
|
|
|
2024-09-24 16:56:57 -06:00
|
|
|
return 0;
|
2024-09-21 21:13:34 -06:00
|
|
|
}
|