| 6 | using namespace quip; |
| 7 | |
| 8 | class CLITest : public ::testing::Test { |
| 9 | protected: |
| 10 | void SetUp() override { |
| 11 | cli_ = std::make_unique<CLI>("http://localhost:8545", |
| 12 | "0x1234567890123456789012345678901234567890"); |
| 13 | } |
| 14 | |
| 15 | std::unique_ptr<CLI> cli_; |
| 16 | }; |
| 17 | |
| 18 | TEST_F(CLITest, InvalidCommand) { |
| 19 | std::vector<std::string> args = {"invalid"}; |
nothing calls this directly
no outgoing calls
no test coverage detected