mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-10-30 20:51:41 +00:00 
			
		
		
		
	 1acfc9b5e0
			
		
	
	1acfc9b5e0
	
	
	
		
			
			- Split mqtt and mqtt5 tests - Move common test code to a common component - Add necessary python scripts
		
			
				
	
	
		
			19 lines
		
	
	
		
			373 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			373 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * SPDX-FileCopyrightText: 2021-2023 Espressif Systems (Shanghai) CO LTD
 | |
|  *
 | |
|  * SPDX-License-Identifier: Apache-2.0
 | |
|  */
 | |
| #pragma once
 | |
| #include "soc/soc_caps.h"
 | |
| 
 | |
| /**
 | |
|  * Connection test fixture setup, so we expect the broker is available
 | |
|  * on network
 | |
|  */
 | |
| void connect_test_fixture_setup(void);
 | |
| 
 | |
| /**
 | |
|  * Cleans up the connection
 | |
|  */
 | |
| void connect_test_fixture_teardown(void);
 |