1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-15 19:52:45 +01:00
RIOT/tests/unittests/tests-netreg/tests-netreg.h

38 lines
675 B
C
Raw Normal View History

2015-02-09 16:13:04 +01:00
/*
* Copyright (C) 2014 Martin Lenders
*
* 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 tests-netreg.h
* @brief Unittests for the ``netreg`` module
*
* @author Martine Lenders <mlenders@inf.fu-berlin.de>
*/
#ifndef __TESTS_NETREG_H_
#define __TESTS_NETREG_H_
#include "embUnit.h"
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief The entry point of this test suite.
*/
void tests_netreg(void);
#ifdef __cplusplus
}
#endif
#endif /* __TESTS_NETREG_H_ */
/** @} */