mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-10 15:39:02 +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>
8 lines
81 B
C++
8 lines
81 B
C++
#include <gtest/gtest.h>
|
|
|
|
TEST(simple_test, dummy)
|
|
{
|
|
EXPECT_EQ(true, true);
|
|
}
|
|
|