-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
20 lines (17 loc) · 755 Bytes
/
Copy pathmain.cpp
File metadata and controls
20 lines (17 loc) · 755 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include <testcoe.hpp>
#include <iostream>
int main(int argc, char **argv)
{
std::cout << "==================================================" << std::endl;
std::cout << " testcoe Basic Example" << std::endl;
std::cout << "==================================================" << std::endl;
std::cout << std::endl;
std::cout << "This example shows how to use testcoe with multiple test files." << std::endl;
std::cout << "testcoe provides a visual grid display of test progress and" << std::endl;
std::cout << "enhanced crash reporting." << std::endl;
std::cout << std::endl;
// Initialize testcoe (replaces Google Test initialization)
testcoe::init(&argc, argv);
// Run all tests
return testcoe::run();
}