mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
67 lines
1.4 KiB
C
67 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 Freie Universität Berlin, Computer Systems & Telematics
|
||
|
* @author Martine Lenders <mlenders@inf.fu-berlin.de>
|
||
|
*/
|
||
|
#ifndef __TESTS_CORE_H_
|
||
|
#define __TESTS_CORE_H_
|
||
|
#include "embUnit/embUnit.h"
|
||
|
|
||
|
/**
|
||
|
* @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_ */
|
||
|
/** @} */
|