/** * @file main.cpp * @author Tyler Beckman (tyler_beckman@mines.edu) * @brief CSCI200 L3B - A program containing string reading and modification * functions, with unit tests to check many edge cases of the functions * @version 1 * @date 2024-09-21 */ #include "test_suite.h" #include int main() { 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; } return 0; }