forked from teamnwah/openmw-tes3coop
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);
|
|
}
|
|
|