Переименование проектов / Renaming of projects
This commit is contained in:
parent
da61a9bf7c
commit
beb237fd4e
44 changed files with 6588 additions and 9 deletions
23
basic-geometry-test/geometry_test.c
Normal file
23
basic-geometry-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