mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 12:49:56 +00:00
34513cf16b
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>
7 lines
81 B
C++
7 lines
81 B
C++
#include <gtest/gtest.h>
|
|
|
|
TEST(simple_test, dummy)
|
|
{
|
|
EXPECT_EQ(true, true);
|
|
}
|
|
|