mirror of
https://github.com/theoludwig/libcproject.git
synced 2024-11-14 16:03:13 +01:00
Théo LUDWIG
2fd8d102e9
Also add `mathematics_max_values` and `mathematics_min_values` to check in array.
31 lines
484 B
C
31 lines
484 B
C
#ifndef __MATHEMATICS_TEST__
|
|
#define __MATHEMATICS_TEST__
|
|
|
|
#include <assert.h>
|
|
|
|
#include "libcproject.h"
|
|
|
|
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();
|
|
|
|
void mathematics_opposite_test();
|
|
|
|
void mathematics_max_test();
|
|
|
|
void mathematics_max_values_test();
|
|
|
|
void mathematics_min_test();
|
|
|
|
void mathematics_min_values_test();
|
|
|
|
#endif
|