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
Ludwig Ortmann c2b2e4554b core/queue: queue -> priority_queue
Rename queue to priority queue, because that's what it is.
2014-08-05 17:57:45 +02:00

72 lines
1.4 KiB
C

/*
* 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);
/**
* @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 priority_queue.h
*
* @return embUnit tests if successful, NULL if not.
*/
Test *tests_core_priority_queue_tests(void);
#endif /* __TESTS_CORE_H_ */
/** @} */