generated from CSCI200/Template
24 lines
No EOL
511 B
C++
24 lines
No EOL
511 B
C++
/**
|
|
* @file main.cpp
|
|
* @author Tyler Beckman (tyler_beckman@mines.edu)
|
|
* @brief CSCI200 L3B - A program to test different string modification APIs in
|
|
* C++
|
|
* @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;
|
|
} |