| 344 | */ |
| 345 | |
| 346 | TEST(WireCommandsTest, succesfulInvokeReturnsSuccess) { |
| 347 | MockCukeEngine engine; |
| 348 | InvokeCommand invokeCommand( |
| 349 | "x", CukeEngine::invoke_args_type(), CukeEngine::invoke_table_type() |
| 350 | ); |
| 351 | EXPECT_CALL(engine, invokeStep(_, _, _)).Times(1); |
| 352 | |
| 353 | std::shared_ptr<const WireResponse> response(invokeCommand.run(engine)); |
| 354 | EXPECT_PTRTYPE(SuccessResponse, response.get()); |
| 355 | } |
| 356 | |
| 357 | TEST(WireCommandsTest, throwingFailureInvokeReturnsFailure) { |
| 358 | MockCukeEngine engine; |