| 42 | using oid::host::open_export_dialog; |
| 43 | |
| 44 | TEST(ExportDialog, DefaultPathPrefersLastExportDir) { |
| 45 | EXPECT_EQ(default_export_path("/exp", "/home/x", "buf", OutputType::Bitmap), |
| 46 | "/exp/buf.png"); |
| 47 | EXPECT_EQ( |
| 48 | default_export_path("/exp", "/home/x", "buf", OutputType::OctaveMatrix), |
| 49 | "/exp/buf.oct"); |
| 50 | } |
| 51 | |
| 52 | TEST(ExportDialog, DefaultPathFallsBackToHomeDesktop) { |
| 53 | EXPECT_EQ(default_export_path("", "/home/x", "buf", OutputType::Bitmap), |
nothing calls this directly
no test coverage detected