1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-20 03:53:49 +01:00
RIOT/tests/unittests/tests-unicoap/tests-unicoap.c

29 lines
687 B
C

/*
* Copyright (C) 2024-2025 Carl Seifert
* Copyright (C) 2024-2025 TU Dresden
*
* This file is subject to the terms and conditions of the GNU Lesser General
* Public License v2.1. See the file LICENSE in the top level directory for
* more details.
*/
/**
* @file
* @ingroup unittests
* @brief Unit test suite for `unicoap` module
* @author Carl Seifert <carl.seifert1@mailbox.tu-dresden.de>
*/
#include "tests-unicoap.h"
Test* tests_unicoap_options(void);
Test* tests_unicoap_pdu(void);
Test* tests_unicoap_message(void);
void tests_unicoap(void)
{
TESTS_RUN(tests_unicoap_pdu());
TESTS_RUN(tests_unicoap_options());
TESTS_RUN(tests_unicoap_message());
}