RuneOptimizerE2ETest.c 356 B

1234567891011121314151617181920
  1. #include "RuneOptimizerTest.c"
  2. /**
  3. * Placeholder dummy test.
  4. */
  5. void dummy_test(){
  6. TEST_ASSERT_EQUAL(1, 1);
  7. }
  8. /**
  9. * Starts running the tests.
  10. */
  11. void run_tests(){
  12. printf("---------------------------------\n");
  13. printf("| Begin RuneOptimizer E2E Tests |\n");
  14. printf("---------------------------------\n");
  15. RUN_TEST(dummy_test);
  16. }