test-main.cpp 260 B

12345678910111213
  1. // SPDX-License-Identifier: MIT
  2. // SPDX-FileCopyrightText: 2022 Ivan Baidakou
  3. #define CATCH_CONFIG_RUNNER
  4. #if defined(__ANDROID__)
  5. #undef __ANDROID__
  6. #endif
  7. #include "catch.hpp"
  8. int main(int argc, char *argv[]) { return Catch::Session().run(argc, argv); }