2015-04-11 08:52:24 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015 Martine 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
|
|
|
|
* @{
|
|
|
|
*
|
2015-05-22 07:34:41 +02:00
|
|
|
* @file
|
2015-04-11 08:52:24 +02:00
|
|
|
* @brief Unittests for the ``sixlowpan_ctx`` module
|
|
|
|
*
|
|
|
|
* @author Martine Lenders <mlenders@inf.fu-berlin.de>
|
|
|
|
*/
|
2017-01-18 13:00:05 +01:00
|
|
|
#ifndef TESTS_SIXLOWPAN_CTX_H
|
|
|
|
#define TESTS_SIXLOWPAN_CTX_H
|
2015-04-11 08:52:24 +02:00
|
|
|
|
|
|
|
#include "embUnit.h"
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief The entry point of this test suite.
|
|
|
|
*/
|
|
|
|
void tests_sixlowpan_ctx(void);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-01-18 13:00:05 +01:00
|
|
|
#endif /* TESTS_SIXLOWPAN_CTX_H */
|
2015-04-11 08:52:24 +02:00
|
|
|
/** @} */
|