L3B/main.cpp
2024-09-27 11:31:41 -06:00

24 lines
No EOL
573 B
C++

/**
* @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 <iostream>
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;
}