| 19 | using namespace protobuf_util; |
| 20 | |
| 21 | TEST(CommandContext, SetGetDefaultFolder) |
| 22 | { |
| 23 | PbCommand command; |
| 24 | CommandContext context(command, "folder1", ""); |
| 25 | |
| 26 | EXPECT_EQ("folder1", context.GetDefaultFolder()); |
| 27 | context.SetDefaultFolder("folder2"); |
| 28 | EXPECT_EQ("folder2", context.GetDefaultFolder()); |
| 29 | } |
| 30 | |
| 31 | TEST(CommandContext, ReadCommand) |
| 32 | { |
nothing calls this directly
no test coverage detected