mirror of
https://github.com/TES3MP/TES3MP.git
synced 2025-10-05 11:02:52 -04:00

Added support for code coverage checking with gcov and unittests with Google C++ unittest and GMock frameworks. Signed-off-by: Lukasz Gromanowski <lgromanowski@gmail.com>
8 lines
81 B
C++
8 lines
81 B
C++
#include <gtest/gtest.h>
|
|
|
|
TEST(simple_test, dummy)
|
|
{
|
|
EXPECT_EQ(true, true);
|
|
}
|
|
|