executor_test.cpp 260 B

12345678910111213141516
  1. /**
  2. * @project Project
  3. * @brief TODO: add a brief
  4. * @author lz
  5. * @data 2023/7/11
  6. **/
  7. #include "executor_test.h"
  8. int main(int argc, char** argv) {
  9. LOG(INFO) << "Test ready.";
  10. ExecutorTest::test(argc, argv);
  11. return EXIT_SUCCESS;
  12. }