17 lines
290 B
C
17 lines
290 B
C
#ifndef __GEOMETRY_TEST_H__
|
|
#define __GEOMETRY_TEST_H__
|
|
|
|
#include <geometry.h>
|
|
|
|
#define TEST_RESULT_SUCCES 0
|
|
#define TEST_RESULT_FAILED 100
|
|
|
|
void print_test_section(const char * name);
|
|
|
|
void print_test_name(const char * name);
|
|
|
|
void print_test_success();
|
|
|
|
void print_test_failed();
|
|
|
|
#endif
|