test.cpp 287 B

123456789101112131415
  1. /*
  2. * SPDX-License-Identifier: Apache-2.0
  3. *
  4. * Change Logs:
  5. * Date Author Notes
  6. * 2022-05-14 tyx first implementation
  7. */
  8. #include <gtest/gtest.h>
  9. int main(int argc, char **argv)
  10. {
  11. testing::InitGoogleTest(&argc, argv);
  12. return RUN_ALL_TESTS();
  13. }