mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-11-04 10:26:39 +00:00 
			
		
		
		
	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);
 | 
						|
}
 | 
						|
 |