2014-09-01 18:58:11 +02:00
|
|
|
/*
|
2015-02-08 19:19:22 +01:00
|
|
|
* Copyright (C) 2014 Martine Lenders <mlenders@inf.fu-berlin.de>
|
2014-09-01 18:58:11 +02:00
|
|
|
*
|
|
|
|
* 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
|
2014-09-01 18:58:11 +02:00
|
|
|
* @brief Unittests for the ``pktbuf`` module
|
|
|
|
*
|
|
|
|
* @author Martine Lenders <mlenders@inf.fu-berlin.de>
|
|
|
|
*/
|
2015-03-22 15:40:33 +01:00
|
|
|
#ifndef TESTS_PKTBUF_H_
|
|
|
|
#define TESTS_PKTBUF_H_
|
2014-09-01 18:58:11 +02:00
|
|
|
|
2014-11-27 22:30:14 +01:00
|
|
|
#include "embUnit.h"
|
2014-09-01 18:58:11 +02:00
|
|
|
|
2014-10-10 08:03:06 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2014-09-01 18:58:11 +02:00
|
|
|
/**
|
|
|
|
* @brief The entry point of this test suite.
|
|
|
|
*/
|
|
|
|
void tests_pktbuf(void);
|
|
|
|
|
2014-10-10 08:03:06 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-03-22 15:40:33 +01:00
|
|
|
#endif /* TESTS_PKTBUF_H_ */
|
2014-09-01 18:58:11 +02:00
|
|
|
/** @} */
|