mirror of
				https://github.com/ciphervance/supercell-wx.git
				synced 2025-11-04 13:40:06 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			344 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			344 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#include <gtest/gtest.h>
 | 
						|
 | 
						|
#include <boost/log/expressions.hpp>
 | 
						|
#include <boost/log/trivial.hpp>
 | 
						|
 | 
						|
int main(int argc, char** argv)
 | 
						|
{
 | 
						|
   boost::log::core::get()->set_filter(boost::log::trivial::severity >=
 | 
						|
                                       boost::log::trivial::debug);
 | 
						|
 | 
						|
   ::testing::InitGoogleTest(&argc, argv);
 | 
						|
   return RUN_ALL_TESTS();
 | 
						|
}
 |