| 61 | using namespace openstudio; |
| 62 | |
| 63 | TEST(ApplicationPathHelpers, Strings) { |
| 64 | path applicationPath = getApplicationPath(); |
| 65 | path applicationDir = getApplicationDirectory(); |
| 66 | path openstudioModule = getOpenStudioModule(); |
| 67 | path openstudioModuleDirectory = getOpenStudioModuleDirectory(); |
| 68 | path openstudioCLI = getOpenStudioCLI(); |
| 69 | path energyplusDirectory = getEnergyPlusDirectory(); |
| 70 | path energyplusExecutable = getEnergyPlusExecutable(); |
| 71 | |
| 72 | EXPECT_TRUE(exists(applicationPath)); |
| 73 | EXPECT_TRUE(exists(applicationDir)); |
| 74 | EXPECT_TRUE(exists(openstudioModule)); |
| 75 | EXPECT_TRUE(exists(openstudioModuleDirectory)); |
| 76 | EXPECT_TRUE(exists(openstudioCLI)); |
| 77 | EXPECT_TRUE(exists(energyplusDirectory)); |
| 78 | EXPECT_TRUE(exists(energyplusExecutable)); |
| 79 | } |
| 80 | |
| 81 | // This is really in PathHelpers but used by ApplicationPathHelpers |
| 82 | TEST(ApplicationPathHelpers, findInSystemPath) { |
nothing calls this directly
no test coverage detected