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_
|
2014-05-15 00:35:55 +02:00
|
|
|
|
|
|
|
#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_ */
|
|
|
|
/** @} */
|