16 lines
448 B
C
16 lines
448 B
C
/*----------------------------------------------------------
|
|
* HTBLA-Leonding
|
|
* ---------------------------------------------------------
|
|
* Title: Unit tests for 'Sum of Digits'
|
|
* Author: S. Schraml
|
|
* ----------------------------------------------------------
|
|
*/
|
|
#ifndef ___TEST_SUM_OF_DIGITS_H
|
|
#define ___TEST_SUM_OF_DIGITS_H
|
|
|
|
#include "shortcut.h"
|
|
|
|
TEST(test_sum_of_digits_rec);
|
|
TEST(test_sum_of_digits_itr);
|
|
|
|
#endif
|