test_app_main.c 881 B

123456789101112131415161718192021222324252627
  1. /*
  2. * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <stdio.h>
  7. #include "unity.h"
  8. #include "unity_test_runner.h"
  9. void app_main(void)
  10. {
  11. /**
  12. * _ _ _ _ _ _ _____ ___ _ ____
  13. * | | | | / \ | | | | | |_ _|_ _| | / ___|
  14. * | |_| | / _ \ | | | | | | | | | || | \___ \
  15. * | _ |/ ___ \| |___ | |_| | | | | || |___ ___) |
  16. * |_| |_/_/ \_\_____| \___/ |_| |___|_____|____/
  17. */
  18. printf(" _ _ _ _ _ _ _____ ___ _ ____ \r\n");
  19. printf(" | | | | / \\ | | | | | |_ _|_ _| | / ___| \r\n");
  20. printf(" | |_| | / _ \\ | | | | | | | | | || | \\___ \\ \r\n");
  21. printf(" | _ |/ ___ \\| |___ | |_| | | | | || |___ ___) |\r\n");
  22. printf(" |_| |_/_/ \\_\\_____| \\___/ |_| |___|_____|____/ \r\n");
  23. unity_run_menu();
  24. }