Базовая версия библиотеки. Версия 0.2.0-dev
This commit is contained in:
parent
b086af7f66
commit
6a56e85052
39 changed files with 6200 additions and 1 deletions
23
test/geometry_test.c
Normal file
23
test/geometry_test.c
Normal file
|
@ -0,0 +1,23 @@
|
|||
#include "geometry_test.h"
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
void print_test_section(const char * name)
|
||||
{
|
||||
printf("================ %s ================\n", name);
|
||||
}
|
||||
|
||||
void print_test_name(const char * name)
|
||||
{
|
||||
printf(" Testing of %s: ", name);
|
||||
}
|
||||
|
||||
void print_test_success()
|
||||
{
|
||||
printf("[ \x1b[32mSuccess\x1b[0m ]\n");
|
||||
}
|
||||
|
||||
void print_test_failed()
|
||||
{
|
||||
printf("[ \x1b[31mFailed\x1b[0m ]\n");
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue