| 59 | }; |
| 60 | |
| 61 | TEST_F(CommandLineTests, command_line_for_sprite_details) |
| 62 | { |
| 63 | std::string exampleFilePath = ExampleSpriteFilePath(); |
| 64 | const char* detailsCmd[3] = { "details", exampleFilePath.c_str() }; |
| 65 | |
| 66 | auto result = details(detailsCmd, 2); |
| 67 | // need to come up with some way to extract stdout/stderr stream if we want to |
| 68 | // fully test this module |
| 69 | ASSERT_EQ(result, ExitCode::ok); |
| 70 | } |
| 71 | |
| 72 | TEST_F(CommandLineTests, command_line_for_sprite_build) |
| 73 | { |