mirror of
https://dev.iopsys.eu/bbf/icwmp.git
synced 2025-12-10 07:44:41 +01:00
18 lines
368 B
C
18 lines
368 B
C
#include <stdio.h>
|
|
#include "icwmp_unit_test.h"
|
|
|
|
int main()
|
|
{
|
|
int ret = 0;
|
|
|
|
ret += icwmp_notifications_test();
|
|
ret += icwmp_cli_unit_test();
|
|
ret += icwmp_custom_inform_test();
|
|
ret += icwmp_soap_msg_test();
|
|
ret += icwmp_uci_test();
|
|
ret += icwmp_datamodel_interface_test();
|
|
ret += icwmp_backup_session_test();
|
|
ret += icwmp_download_unit_test();
|
|
|
|
return ret;
|
|
}
|