1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/tests/unittests/tests-core/tests-core.h

72 lines
1.4 KiB
C
Raw Normal View History

2014-03-31 14:02:47 +02:00
/*
* Copyright (C) 2014 Martin Lenders
*
* 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-core.h
* @brief Unittests for the ``core`` module
*
* @author Martine Lenders <mlenders@inf.fu-berlin.de>
*/
#ifndef __TESTS_CORE_H_
#define __TESTS_CORE_H_
#include "../unittests.h"
/**
* @brief The entry point of this test suite.
*/
void tests_core(void);
2014-03-31 14:02:47 +02:00
/**
* @brief Generates tests atomic.h
*
* @return embUnit tests if successful, NULL if not.
*/
Test *tests_core_atomic_tests(void);
/**
* @brief Generates tests for bitarithm.h
*
* @return embUnit tests if successful, NULL if not.
*/
Test *tests_core_bitarithm_tests(void);
/**
* @brief Generates tests cib.h
*
* @return embUnit tests if successful, NULL if not.
*/
Test *tests_core_cib_tests(void);
/**
* @brief Generates tests clist.h
*
* @return embUnit tests if successful, NULL if not.
*/
Test *tests_core_clist_tests(void);
/**
* @brief Generates tests lifo.h
*
* @return embUnit tests if successful, NULL if not.
*/
Test *tests_core_lifo_tests(void);
/**
* @brief Generates tests queue.h
*
* @return embUnit tests if successful, NULL if not.
*/
Test *tests_core_queue_tests(void);
#endif /* __TESTS_CORE_H_ */
/** @} */