17 lines
511 B
C
17 lines
511 B
C
/*
|
|
* Copyright (c) 2025, Sylvan Arnold
|
|
*
|
|
*/
|
|
#ifndef TEST_MQTT_CLIENT_H_
|
|
#define TEST_MQTT_CLIENT_H_
|
|
|
|
/* Function prototypes for test_mqtt_client.c */
|
|
void test_MqttClient_Init_SetsDefaults(void);
|
|
void test_MqttClient_SetDoPublish_On(void);
|
|
void test_MqttClient_SetDoPublish_Off(void);
|
|
void test_MqttClient_Publish_Disabled(void);
|
|
void test_MqttClient_Publish_NotConnected(void);
|
|
void test_MqttClient_Connect_Disconnect(void);
|
|
void test_MqttClient_Publish_SensorValues(void);
|
|
|
|
#endif /* TEST_MQTT_CLIENT_H_ */ |