2023-01-05 19:28:05 +01:00
|
|
|
#ifndef __MATHEMATICS_TEST__
|
|
|
|
#define __MATHEMATICS_TEST__
|
|
|
|
|
2023-01-07 19:38:01 +01:00
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
#include "libcproject.h"
|
|
|
|
|
2023-01-05 19:28:05 +01:00
|
|
|
void mathematics_test();
|
|
|
|
|
|
|
|
void mathematics_absolute_value_test();
|
|
|
|
|
|
|
|
void mathematics_pow_test();
|
|
|
|
|
|
|
|
void mathematics_root_test();
|
|
|
|
|
|
|
|
void mathematics_square_root_test();
|
|
|
|
|
|
|
|
void mathematics_factorial_test();
|
|
|
|
|
2024-09-13 15:35:19 +02:00
|
|
|
void mathematics_opposite_test();
|
|
|
|
|
|
|
|
void mathematics_max_test();
|
|
|
|
|
|
|
|
void mathematics_max_values_test();
|
|
|
|
|
|
|
|
void mathematics_min_test();
|
|
|
|
|
|
|
|
void mathematics_min_values_test();
|
|
|
|
|
2023-01-05 19:28:05 +01:00
|
|
|
#endif
|