transfered from codeberg
This commit is contained in:
25
source_code/test_main.c
Normal file
25
source_code/test_main.c
Normal file
@@ -0,0 +1,25 @@
|
||||
/* source_code/test_main.c */
|
||||
#include "unity.h"
|
||||
|
||||
/* Forward declarations of the test runner functions
|
||||
located in your various module test files */
|
||||
extern void run_terrain_tests(void);
|
||||
extern void run_block_tests(void);
|
||||
extern void run_chunk_tests(void);
|
||||
extern void run_sunlight_tests(void);
|
||||
void run_frustum_tests(void);
|
||||
void run_chunk_mesh_builder_tests(void);
|
||||
|
||||
void setUp(void) {}
|
||||
void tearDown(void) {}
|
||||
|
||||
int main(void) {
|
||||
UNITY_BEGIN();
|
||||
run_terrain_tests();
|
||||
run_block_tests();
|
||||
run_chunk_tests();
|
||||
run_sunlight_tests();
|
||||
run_frustum_tests();
|
||||
run_chunk_mesh_builder_tests();
|
||||
return UNITY_END();
|
||||
}
|
||||
Reference in New Issue
Block a user