26 lines
665 B
C
26 lines
665 B
C
/* 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();
|
|
}
|