/* * Copyright (C) 2014 René Kijewski * * 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-lib.h * @brief Unittests for the ``lib`` sysmodule * * @author René Kijewski */ #ifndef __TESTS_CORE_H_ #define __TESTS_CORE_H_ #include "../unittests.h" #ifdef __cplusplus extern "C" { #endif /** * @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); #ifdef __cplusplus } #endif #endif /* __TESTS_CORE_H_ */ /** @} */