#include "RuneOptimizerTest.c" /** * Placeholder dummy test. */ void dummy_test(){ TEST_ASSERT_EQUAL(1, 1); } /** * Starts running the tests. */ void run_tests(){ printf("---------------------------------\n"); printf("| Begin RuneOptimizer E2E Tests |\n"); printf("---------------------------------\n"); RUN_TEST(dummy_test); }