16 lines
253 B
C
16 lines
253 B
C
|
/* test_asserts.h
|
||
|
*
|
||
|
* Some helpful asserts built on Check's asserts.
|
||
|
*
|
||
|
* Eryn Wells <eryn@erynwells.me>
|
||
|
*/
|
||
|
|
||
|
#ifndef __TEST_ASSERT_H__
|
||
|
#define __TEST_ASSERT_H__
|
||
|
|
||
|
|
||
|
void test_assert_within_epsilon(float value, float expected, float epsilon);
|
||
|
|
||
|
|
||
|
#endif
|