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:
parent
399b8026d3
commit
ab0505dfff
1
tests/unittests/tests-ieee802154/Makefile
Normal file
1
tests/unittests/tests-ieee802154/Makefile
Normal file
@ -0,0 +1 @@
|
||||
include $(RIOTBASE)/Makefile.base
|
1
tests/unittests/tests-ieee802154/Makefile.include
Normal file
1
tests/unittests/tests-ieee802154/Makefile.include
Normal file
@ -0,0 +1 @@
|
||||
USEMODULE += ieee802154
|
1241
tests/unittests/tests-ieee802154/tests-ieee802154.c
Normal file
1241
tests/unittests/tests-ieee802154/tests-ieee802154.c
Normal file
File diff suppressed because it is too large
Load Diff
37
tests/unittests/tests-ieee802154/tests-ieee802154.h
Normal file
37
tests/unittests/tests-ieee802154/tests-ieee802154.h
Normal 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_ */
|
||||
/** @} */
|
Loading…
Reference in New Issue
Block a user