cli_test.cxx 466 B

123456789101112131415161718192021222324
  1. //
  2. // cli_test.cxx
  3. // cli-test
  4. //
  5. // Created by Sam Jaffe on 10/9/20.
  6. // Copyright © 2020 Sam Jaffe. All rights reserved.
  7. //
  8. #include "cli/cli.h"
  9. #include <gmock/gmock.h>
  10. #include <gtest/gtest.h>
  11. #if XCODE_UNIT_TEST
  12. // This is a hack to allow XCode to properly display failures when running
  13. // unit tests.
  14. #undef EXPECT_THAT
  15. #define EXPECT_THAT ASSERT_THAT
  16. #endif
  17. TEST(CliTest, EndsOnQuit) {
  18. std::stringstream input{R"(quit)"};
  19. cli::cli(input).run();
  20. }