mirror of
				https://github.com/ciphervance/supercell-wx.git
				synced 2025-10-31 13:10:04 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
	
		
			429 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			429 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #include <scwx/util/logger.hpp>
 | |
| 
 | |
| #include <aws/core/Aws.h>
 | |
| #include <gtest/gtest.h>
 | |
| #include <spdlog/spdlog.h>
 | |
| 
 | |
| int main(int argc, char** argv)
 | |
| {
 | |
|    scwx::util::Logger::Initialize();
 | |
|    spdlog::set_level(spdlog::level::debug);
 | |
| 
 | |
|    Aws::SDKOptions awsSdkOptions;
 | |
|    Aws::InitAPI(awsSdkOptions);
 | |
| 
 | |
|    ::testing::InitGoogleTest(&argc, argv);
 | |
|    int result = RUN_ALL_TESTS();
 | |
| 
 | |
|    Aws::ShutdownAPI(awsSdkOptions);
 | |
| 
 | |
|    return result;
 | |
| }
 | 
