1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/tests/unittests/tests-lib/tests-lib.h
Ludwig Ortmann b6846e31fc doc: fix most occurences of FU as an author
.. but only if there are other authors as well
2014-07-29 17:23:11 +02:00

37 lines
741 B
C

/*
* Copyright (C) 2014 René Kijewski
*
* This file is subject to the terms and conditions of the GNU Lesser General
* Public License. See the file LICENSE in the top level directory for more
* details.
*/
/**
* @addtogroup unittests
* @{
*
* @file tests-lib.h
* @brief Unittests for the ``lib`` sysmodule
*
* @author René Kijewski <rene.kijewski@fu-berlin.de>
*/
#ifndef __TESTS_CORE_H_
#define __TESTS_CORE_H_
#include "../unittests.h"
/**
* @brief The entry point of this test suite.
*/
void tests_lib(void);
/**
* @brief Generates tests ringbuffer.h
*
* @return embUnit tests if successful, NULL if not.
*/
Test *tests_lib_ringbuffer_tests(void);
#endif /* __TESTS_CORE_H_ */
/** @} */