2014-06-06 21:55:45 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2014 Philipp Rosenkranz, Daniel Jentsch
|
|
|
|
*
|
2014-08-23 15:43:13 +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.
|
2014-06-06 21:55:45 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @addtogroup unittests
|
|
|
|
* @{
|
|
|
|
*
|
2015-05-22 07:34:41 +02:00
|
|
|
* @file
|
2014-06-06 21:55:45 +02:00
|
|
|
* @brief Unittests for the ``timex`` module
|
|
|
|
*
|
|
|
|
* @author Philipp Rosenkranz <philipp.rosenkranz@fu-berlin.de>
|
|
|
|
* @author Daniel Jentsch <d.jentsch@fu-berlin.de>
|
|
|
|
*/
|
2017-01-18 13:00:05 +01:00
|
|
|
#ifndef TESTS_TIMEX_H
|
|
|
|
#define TESTS_TIMEX_H
|
2014-06-06 21:55:45 +02:00
|
|
|
|
2014-11-27 22:30:14 +01:00
|
|
|
#include "embUnit.h"
|
2014-06-06 21:55:45 +02:00
|
|
|
|
2014-10-10 08:03:06 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2014-06-06 21:55:45 +02:00
|
|
|
/**
|
|
|
|
* @brief The entry point of this test suite.
|
|
|
|
*/
|
|
|
|
void tests_timex(void);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Generates tests for timex
|
|
|
|
*
|
|
|
|
* @return embUnit tests if successful, NULL if not.
|
|
|
|
*/
|
|
|
|
Test *tests_timex_tests(void);
|
|
|
|
|
2014-10-10 08:03:06 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-01-18 13:00:05 +01:00
|
|
|
#endif /* TESTS_TIMEX_H */
|
2014-06-06 21:55:45 +02:00
|
|
|
/** @} */
|