1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

tests: provide unittests for ieee802154 module

This commit is contained in:
Martine Lenders 2016-01-14 11:03:27 +01:00 committed by Martine Lenders
parent 399b8026d3
commit ab0505dfff
4 changed files with 1280 additions and 0 deletions

View File

@ -0,0 +1 @@
include $(RIOTBASE)/Makefile.base

View File

@ -0,0 +1 @@
USEMODULE += ieee802154

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,37 @@
/*
* Copyright (C) 2016 Freie Universität Berlin
*
* 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.
*/
/**
* @addtogroup unittests
* @{
*
* @file
* @brief Unittests for the ``ieee802154`` module
*
* @author Martine Lenders <mlenders@inf.fu-berlin.de>
*/
#ifndef TESTS_IEEE802154_H_
#define TESTS_IEEE802154_H_
#include "embUnit.h"
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief The entry point of this test suite.
*/
void tests_ieee802154(void);
#ifdef __cplusplus
}
#endif
#endif /* TESTS_IEEE802154_H_ */
/** @} */