14 lines
357 B
C++
14 lines
357 B
C++
#include <gtest/gtest.h>
|
|
#include <gmock/gmock.h>
|
|
#include <iostream>
|
|
|
|
// This main can be used to customize test execution
|
|
int main(int argc, char** argv) {
|
|
std::cout << "Running CIGUI Library Tests\n";
|
|
|
|
// Initialize Google Test
|
|
::testing::InitGoogleTest(&argc, argv);
|
|
|
|
// Run the tests and return the result
|
|
return RUN_ALL_TESTS();
|
|
}
|