cigui/tests/test_main.cpp
noffie 8e0e9ceb7c Major Restructuring
N0ffie switched to mingw (fixing linux warnings)
2025-04-12 18:09:16 +02:00

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();
}