mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-05-02 14:57:59 +03:00
Added support for code coverage checking and unittests.
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>
This commit is contained in:
parent
e9b80c34fe
commit
34513cf16b
9 changed files with 160 additions and 0 deletions
|
@ -0,0 +1,7 @@
|
|||
#include <gtest/gtest.h>
|
||||
|
||||
TEST(simple_test, dummy)
|
||||
{
|
||||
EXPECT_EQ(true, true);
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue