mirror of
https://github.com/unittest-cpp/unittest-cpp
synced 2026-09-27 00:28:49 +03:00
CMakeLists was modified to support this, then include paths for the test executable also had to be modified to include UnitTest++.
6 lines
106 B
C++
6 lines
106 B
C++
#include "UnitTest++/UnitTestPP.h"
|
|
|
|
int main(int, char const *[])
|
|
{
|
|
return UnitTest::RunAllTests();
|
|
}
|