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

46 lines
852 B
C
Raw Normal View History

2016-01-16 21:03:03 +01:00
/*
* Copyright 2016 Ludwig Knüpfer <ludwig.knuepfer@fu-berlin.de>
*
* 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
2016-02-04 12:00:07 +01:00
* @brief Unittests for the ``crc`` module
2016-01-16 21:03:03 +01:00
*
* @author Ludwig Knüpfer <ludwig.knuepfer@fu-berlin.de>
*/
#ifndef TESTS_CHECKSUM_H
#define TESTS_CHECKSUM_H
#include "embUnit.h"
#include "kernel.h"
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief The entry point of this test suite.
*/
2016-02-04 12:00:07 +01:00
void tests_crc(void);
2016-01-16 21:03:03 +01:00
/**
2016-02-04 12:00:07 +01:00
* @brief Generates tests for crc/crc16_ccitt.h
2016-01-16 21:03:03 +01:00
*
* @return embUnit tests if successful, NULL if not.
*/
2016-02-04 12:00:07 +01:00
Test *tests_crc_crc16_ccitt_tests(void);
2016-01-16 21:03:03 +01:00
#ifdef __cplusplus
}
#endif
#endif /* TESTS_CHECKSUM_H */
/** @} */