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:
Lukasz Gromanowski 2012-08-19 22:23:46 +03:00
parent e9b80c34fe
commit 34513cf16b
9 changed files with 160 additions and 0 deletions

View file

@ -0,0 +1,7 @@
#include <gtest/gtest.h>
TEST(simple_test, dummy)
{
EXPECT_EQ(true, true);
}